Package net.risesoft.service.impl
Class CustomProcessInfoServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.CustomProcessInfoServiceImpl
-
- All Implemented Interfaces:
CustomProcessInfoService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class CustomProcessInfoServiceImpl extends Object implements CustomProcessInfoService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description CustomProcessInfoServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CustomProcessInfogetCurrentTaskNextNode(String processSerialNumber)获取当前运行任务的下一个节点booleansaveOrUpdate(String itemId, String processSerialNumber, List<Map<String,Object>> taskList)保存流程定制信息booleanupdateCurrentTask(String processSerialNumber)更新当前运行节点
-
-
-
Method Detail
-
getCurrentTaskNextNode
public CustomProcessInfo getCurrentTaskNextNode(String processSerialNumber)
Description copied from interface:CustomProcessInfoService获取当前运行任务的下一个节点- Specified by:
getCurrentTaskNextNodein interfaceCustomProcessInfoService- Returns:
-
saveOrUpdate
@Transactional public boolean saveOrUpdate(String itemId, String processSerialNumber, List<Map<String,Object>> taskList)
Description copied from interface:CustomProcessInfoService保存流程定制信息- Specified by:
saveOrUpdatein interfaceCustomProcessInfoService- Returns:
-
updateCurrentTask
@Transactional public boolean updateCurrentTask(String processSerialNumber)
Description copied from interface:CustomProcessInfoService更新当前运行节点- Specified by:
updateCurrentTaskin interfaceCustomProcessInfoService- Returns:
-
-