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