接口 CommonButtonService
-
- 所有已知实现类:
CommonButtonServiceImpl
public interface CommonButtonService- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 booleancheckCustomId(String customId)新增的时候,判断传进来的customId是否已经存在CommonButtongetById(String id)根据唯一标示查找List<CommonButton>listAll()查找所有voidremoveCommonButtons(String[] commonButtonIds)根据传进来的Id集合删除CommonButtonsaveOrUpdate(CommonButton commonButton)保存或者更新
-
-
-
方法详细资料
-
checkCustomId
boolean checkCustomId(String customId)
新增的时候,判断传进来的customId是否已经存在- 参数:
customId-- 返回:
-
getById
CommonButton getById(String id)
根据唯一标示查找- 参数:
id-- 返回:
-
listAll
List<CommonButton> listAll()
查找所有- 返回:
-
removeCommonButtons
void removeCommonButtons(String[] commonButtonIds)
根据传进来的Id集合删除- 参数:
commonButtonIds-
-
saveOrUpdate
CommonButton saveOrUpdate(CommonButton commonButton)
保存或者更新- 参数:
commonButton-- 返回:
-
-