Package net.risesoft.service.impl
Class EleAttachmentServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.EleAttachmentServiceImpl
-
- All Implemented Interfaces:
EleAttachmentService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class EleAttachmentServiceImpl extends Object implements EleAttachmentService- Author:
- qinman
- Date:
- 2024/11/11
-
-
Constructor Summary
Constructors Constructor Description EleAttachmentServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelBatchByProcessSerialNumbers(List<String> processSerialNumbers)根据流程编号删除附件,同时删除文件系统的文件voiddelFile(String ids)删除附件EleAttachmentfindById(String id)获取附件List<EleAttachment>findByProcessSerialNumberAndAttachmentType(String processSerialNumber, String attachmentType)根据流程编号和附件类型获取附件List<EleAttachment>findByProcessSerialNumberAndTypeOrderByTime(String processSerialNumber, String attachmentType)根据流程编号和附件类型获取附件voidsaveOrder(String id1, String id2)附件排序voidsaveOrUpdate(EleAttachment eleAttachment)Description: 保存附件
-
-
-
Method Detail
-
delBatchByProcessSerialNumbers
@Transactional public void delBatchByProcessSerialNumbers(List<String> processSerialNumbers)
Description copied from interface:EleAttachmentService根据流程编号删除附件,同时删除文件系统的文件- Specified by:
delBatchByProcessSerialNumbersin interfaceEleAttachmentService
-
delFile
@Transactional public void delFile(String ids)
Description copied from interface:EleAttachmentService删除附件- Specified by:
delFilein interfaceEleAttachmentService
-
findById
@Transactional public EleAttachment findById(String id)
Description copied from interface:EleAttachmentService获取附件- Specified by:
findByIdin interfaceEleAttachmentService- Returns:
-
findByProcessSerialNumberAndAttachmentType
public List<EleAttachment> findByProcessSerialNumberAndAttachmentType(String processSerialNumber, String attachmentType)
Description copied from interface:EleAttachmentService根据流程编号和附件类型获取附件- Specified by:
findByProcessSerialNumberAndAttachmentTypein interfaceEleAttachmentService- Returns:
-
findByProcessSerialNumberAndTypeOrderByTime
public List<EleAttachment> findByProcessSerialNumberAndTypeOrderByTime(String processSerialNumber, String attachmentType)
Description copied from interface:EleAttachmentService根据流程编号和附件类型获取附件- Specified by:
findByProcessSerialNumberAndTypeOrderByTimein interfaceEleAttachmentService- Returns:
-
saveOrUpdate
@Transactional public void saveOrUpdate(EleAttachment eleAttachment)
Description copied from interface:EleAttachmentServiceDescription: 保存附件- Specified by:
saveOrUpdatein interfaceEleAttachmentService
-
saveOrder
@Transactional public void saveOrder(String id1, String id2)
Description copied from interface:EleAttachmentService附件排序- Specified by:
saveOrderin interfaceEleAttachmentService
-
-