Package net.risesoft.service.impl
Class SendButtonServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.SendButtonServiceImpl
-
- All Implemented Interfaces:
SendButtonService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class SendButtonServiceImpl extends Object implements SendButtonService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description SendButtonServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancheckCustomId(String customId)新增的时候,判断传进来的customId是否已经存在SendButtongetById(String id)根据唯一标示查找List<SendButton>listAll()查找所有voidremoveSendButtons(String[] sendButtonIds)Description: 根据传进来的Id集合删除SendButtonsaveOrUpdate(SendButton sendButton)Description: 保存或者更新
-
-
-
Method Detail
-
checkCustomId
public boolean checkCustomId(String customId)
Description copied from interface:SendButtonService新增的时候,判断传进来的customId是否已经存在- Specified by:
checkCustomIdin interfaceSendButtonService- Returns:
-
getById
public SendButton getById(String id)
Description copied from interface:SendButtonService根据唯一标示查找- Specified by:
getByIdin interfaceSendButtonService- Returns:
-
listAll
public List<SendButton> listAll()
Description copied from interface:SendButtonService查找所有- Specified by:
listAllin interfaceSendButtonService- Returns:
-
removeSendButtons
@Transactional public void removeSendButtons(String[] sendButtonIds)
Description copied from interface:SendButtonServiceDescription: 根据传进来的Id集合删除- Specified by:
removeSendButtonsin interfaceSendButtonService
-
saveOrUpdate
@Transactional public SendButton saveOrUpdate(SendButton sendButton)
Description copied from interface:SendButtonServiceDescription: 保存或者更新- Specified by:
saveOrUpdatein interfaceSendButtonService- Returns:
-
-