Package net.risesoft.service.impl
Class AssociatedFileServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.AssociatedFileServiceImpl
-
- All Implemented Interfaces:
AssociatedFileService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class AssociatedFileServiceImpl extends Object implements AssociatedFileService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description AssociatedFileServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcountAssociatedFile(String processSerialNumber)关联流程计数booleandeleteAllAssociatedFile(String processSerialNumber, String delIds)删除多个关联流程booleandeleteAssociatedFile(String processSerialNumber, String delId)删除关联流程List<AssociatedFileModel>listAssociatedFileAll(String processSerialNumber)获取关联流程列表,包括未办结件booleansaveAssociatedFile(String processSerialNumber, String processInstanceIds)保存关联流程
-
-
-
Method Detail
-
countAssociatedFile
public int countAssociatedFile(String processSerialNumber)
Description copied from interface:AssociatedFileService关联流程计数- Specified by:
countAssociatedFilein interfaceAssociatedFileService- Returns:
-
deleteAllAssociatedFile
@Transactional public boolean deleteAllAssociatedFile(String processSerialNumber, String delIds)
Description copied from interface:AssociatedFileService删除多个关联流程- Specified by:
deleteAllAssociatedFilein interfaceAssociatedFileService- Returns:
-
deleteAssociatedFile
@Transactional public boolean deleteAssociatedFile(String processSerialNumber, String delId)
Description copied from interface:AssociatedFileService删除关联流程- Specified by:
deleteAssociatedFilein interfaceAssociatedFileService- Returns:
-
listAssociatedFileAll
public List<AssociatedFileModel> listAssociatedFileAll(String processSerialNumber)
Description copied from interface:AssociatedFileService获取关联流程列表,包括未办结件- Specified by:
listAssociatedFileAllin interfaceAssociatedFileService- Returns:
-
saveAssociatedFile
@Transactional public boolean saveAssociatedFile(String processSerialNumber, String processInstanceIds)
Description copied from interface:AssociatedFileService保存关联流程- Specified by:
saveAssociatedFilein interfaceAssociatedFileService- Returns:
-
-