接口 Y9AppIconService
-
- 所有已知实现类:
Y9AppIconServiceImpl
public interface Y9AppIconService- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voiddelete(String id)删除图标voiddelete(Y9AppIcon appIcon)删除选定的图标Optional<Y9AppIcon>findById(String id)根据id,获取应用图标Optional<Y9AppIcon>findByName(String name)根据名字获取应用图标Y9AppIcongetById(String id)根据 id 获取应用图标List<Y9AppIcon>listAll()查询所有图标List<Y9AppIcon>listByName(String name)根据名称查询应用图标列表org.springframework.data.domain.Page<Y9AppIcon>pageAll(net.risesoft.pojo.Y9PageQuery pageQuery)分页获取图标列表voidrefreshAppIconData()刷新图标数据voidsave(Y9AppIcon appIcon)保存图标Y9AppIconsave(org.springframework.web.multipart.MultipartFile iconFile, String remark)保存应用程序图标org.springframework.data.domain.Page<Y9AppIcon>searchByName(String name, net.risesoft.pojo.Y9PageQuery pageQuery)根据名字分页查询图标
-
-
-
方法详细资料
-
delete
void delete(String id)
删除图标- 参数:
id- 唯一标识
-
delete
void delete(Y9AppIcon appIcon)
删除选定的图标- 参数:
appIcon- 应用图标
-
getById
Y9AppIcon getById(String id)
根据 id 获取应用图标- 参数:
id- id- 返回:
Y9AppIcon- 抛出:
net.risesoft.y9.exception.Y9NotFoundException- id 对应的记录不存在的情况
-
pageAll
org.springframework.data.domain.Page<Y9AppIcon> pageAll(net.risesoft.pojo.Y9PageQuery pageQuery)
分页获取图标列表- 参数:
pageQuery- 分页查询参数- 返回:
Page<Y9AppIcon>
-
refreshAppIconData
void refreshAppIconData()
刷新图标数据
-
save
Y9AppIcon save(org.springframework.web.multipart.MultipartFile iconFile, String remark) throws net.risesoft.y9.exception.Y9BusinessException
保存应用程序图标
-
save
void save(Y9AppIcon appIcon)
保存图标- 参数:
appIcon- 应用图标
-
-