Package net.risesoft.service
Interface EleAttachmentService
-
- All Known Implementing Classes:
EleAttachmentServiceImpl
public interface EleAttachmentService- Author:
- qinman
- Date:
- 2024/11/11
-
-
Method Summary
All Methods Instance Methods Abstract 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
void delBatchByProcessSerialNumbers(List<String> processSerialNumbers)
根据流程编号删除附件,同时删除文件系统的文件- Parameters:
processSerialNumbers-
-
delFile
void delFile(String ids)
删除附件- Parameters:
ids-
-
findById
EleAttachment findById(String id)
获取附件- Parameters:
id-- Returns:
-
findByProcessSerialNumberAndAttachmentType
List<EleAttachment> findByProcessSerialNumberAndAttachmentType(String processSerialNumber, String attachmentType)
根据流程编号和附件类型获取附件- Parameters:
processSerialNumber-attachmentType-- Returns:
-
findByProcessSerialNumberAndTypeOrderByTime
List<EleAttachment> findByProcessSerialNumberAndTypeOrderByTime(String processSerialNumber, String attachmentType)
根据流程编号和附件类型获取附件- Parameters:
processSerialNumber-attachmentType-- Returns:
-
saveOrUpdate
void saveOrUpdate(EleAttachment eleAttachment)
Description: 保存附件- Parameters:
eleAttachment-
-
-