Package net.risesoft.service.impl
Class SpeakInfoServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.SpeakInfoServiceImpl
-
- All Implemented Interfaces:
SpeakInfoService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class SpeakInfoServiceImpl extends Object implements SpeakInfoService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description SpeakInfoServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>deleteById(String id)Description: 逻辑删除发言信息SpeakInfofindById(String id)根据唯一标示超找发言信息List<SpeakInfo>findByProcessInstanceId(String processInstanceId)根据流程实例查找某一个流程的所有发言信息,根据时间倒叙排列intgetNotReadCount(String processInstanceId, String userId)获取未读消息计数StringsaveOrUpdate(SpeakInfo speakInfo)保存或者更新发言信息
-
-
-
Method Detail
-
deleteById
@Transactional public net.risesoft.pojo.Y9Result<Object> deleteById(String id)
Description copied from interface:SpeakInfoServiceDescription: 逻辑删除发言信息- Specified by:
deleteByIdin interfaceSpeakInfoService- Returns:
-
findById
public SpeakInfo findById(String id)
Description copied from interface:SpeakInfoService根据唯一标示超找发言信息- Specified by:
findByIdin interfaceSpeakInfoService- Returns:
-
findByProcessInstanceId
@Transactional public List<SpeakInfo> findByProcessInstanceId(String processInstanceId)
Description copied from interface:SpeakInfoService根据流程实例查找某一个流程的所有发言信息,根据时间倒叙排列- Specified by:
findByProcessInstanceIdin interfaceSpeakInfoService- Returns:
-
getNotReadCount
public int getNotReadCount(String processInstanceId, String userId)
Description copied from interface:SpeakInfoService获取未读消息计数- Specified by:
getNotReadCountin interfaceSpeakInfoService- Returns:
-
saveOrUpdate
@Transactional public String saveOrUpdate(SpeakInfo speakInfo)
Description copied from interface:SpeakInfoService保存或者更新发言信息- Specified by:
saveOrUpdatein interfaceSpeakInfoService- Returns:
-
-