类 AppIconApiImpl
- java.lang.Object
-
- net.risesoft.api.resource.AppIconApiImpl
-
- 所有已实现的接口:
AppIconApi
@Primary @RestController @Validated @RequestMapping(value="/services/rest/v1/appIcon", produces="application/json") public class AppIconApiImpl extends Object implements AppIconApi应用图标管理组件- 从以下版本开始:
- 9.6.0
- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
构造器概要
构造器 构造器 说明 AppIconApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.AppIcon>>listAllIcon()查询所有图标net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.AppIcon>>searchAppIcon(@NotBlank String name)根据名称查询应用图标列表
-
-
-
方法详细资料
-
listAllIcon
public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.AppIcon>> listAllIcon()
查询所有图标- 指定者:
listAllIcon在接口中AppIconApi- 返回:
Y9Result<List<AppIcon>>通用请求返回对象 - data 是应用图标列表- 从以下版本开始:
- 9.6.0
-
searchAppIcon
public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.AppIcon>> searchAppIcon(@RequestParam("name") @NotBlank @NotBlank String name)
根据名称查询应用图标列表- 指定者:
searchAppIcon在接口中AppIconApi- 参数:
name- 图标名称- 返回:
Y9Result<List<AppIcon>>通用请求返回对象 - data 是应用图标列表- 从以下版本开始:
- 9.6.0
-
-