Package net.risesoft.service
Interface DocumentCopyService
-
- All Known Implementing Classes:
DocumentCopyServiceImpl
public interface DocumentCopyService- Since:
- 9.6.8
- Author:
- : qinman
- Date:
- : 2025-02-10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<DocumentCopy>findById(String id)List<DocumentCopy>findByOpinionCopyId(String opinionCopyId)List<DocumentCopy>findByProcessSerialNumberAndSenderId(String processSerialNumber, String senderId)List<DocumentCopy>findByProcessSerialNumberAndUserId(String processSerialNumber, String userId)List<DocumentCopy>findByProcessSerialNumberAndUserIdAndStatus(String processSerialNumber, String userId, Integer status)org.springframework.data.domain.Page<DocumentCopy>findByUserIdAndStatusLessThan(String assignee, Integer status, int rows, int page, org.springframework.data.domain.Sort sort)voidsave(List<DocumentCopy> documentCopyList)voidsave(DocumentCopy documentCopy)
-
-
-
Method Detail
-
findByUserIdAndStatusLessThan
org.springframework.data.domain.Page<DocumentCopy> findByUserIdAndStatusLessThan(String assignee, Integer status, int rows, int page, org.springframework.data.domain.Sort sort)
-
findByProcessSerialNumberAndSenderId
List<DocumentCopy> findByProcessSerialNumberAndSenderId(String processSerialNumber, String senderId)
-
findByOpinionCopyId
List<DocumentCopy> findByOpinionCopyId(String opinionCopyId)
-
findByProcessSerialNumberAndUserIdAndStatus
List<DocumentCopy> findByProcessSerialNumberAndUserIdAndStatus(String processSerialNumber, String userId, Integer status)
-
findByProcessSerialNumberAndUserId
List<DocumentCopy> findByProcessSerialNumberAndUserId(String processSerialNumber, String userId)
-
save
void save(List<DocumentCopy> documentCopyList)
-
save
void save(DocumentCopy documentCopy)
-
findById
Optional<DocumentCopy> findById(String id)
-
-