类 SendButtonServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.SendButtonServiceImpl
-
- 所有已实现的接口:
SendButtonService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class SendButtonServiceImpl extends Object implements SendButtonService- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
构造器概要
构造器 构造器 说明 SendButtonServiceImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleancheckCustomId(String customId)新增的时候,判断传进来的customId是否已经存在SendButtongetById(String id)根据唯一标示查找List<SendButton>listAll()查找所有voidremoveSendButtons(String[] sendButtonIds)Description: 根据传进来的Id集合删除SendButtonsaveOrUpdate(SendButton sendButton)Description: 保存或者更新
-
-
-
方法详细资料
-
checkCustomId
public boolean checkCustomId(String customId)
从接口复制的说明:SendButtonService新增的时候,判断传进来的customId是否已经存在- 指定者:
checkCustomId在接口中SendButtonService- 返回:
-
getById
public SendButton getById(String id)
从接口复制的说明:SendButtonService根据唯一标示查找- 指定者:
getById在接口中SendButtonService- 返回:
-
listAll
public List<SendButton> listAll()
从接口复制的说明:SendButtonService查找所有- 指定者:
listAll在接口中SendButtonService- 返回:
-
removeSendButtons
@Transactional public void removeSendButtons(String[] sendButtonIds)
从接口复制的说明:SendButtonServiceDescription: 根据传进来的Id集合删除- 指定者:
removeSendButtons在接口中SendButtonService
-
saveOrUpdate
@Transactional public SendButton saveOrUpdate(SendButton sendButton)
从接口复制的说明:SendButtonServiceDescription: 保存或者更新- 指定者:
saveOrUpdate在接口中SendButtonService- 返回:
-
-