Package net.risesoft.service.impl
Class DocumentCopyServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.DocumentCopyServiceImpl
-
- All Implemented Interfaces:
DocumentCopyService
@Service @Transactional(readOnly=true) public class DocumentCopyServiceImpl extends Object implements DocumentCopyService
- Since:
- 9.6.8
- Author:
- : qinman
- Date:
- : 2025-02-10
-
-
Constructor Summary
Constructors Constructor Description DocumentCopyServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete 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
public org.springframework.data.domain.Page<DocumentCopy> findByUserIdAndStatusLessThan(String assignee, Integer status, int rows, int page, org.springframework.data.domain.Sort sort)
- Specified by:
findByUserIdAndStatusLessThanin interfaceDocumentCopyService
-
findByProcessSerialNumberAndSenderId
public List<DocumentCopy> findByProcessSerialNumberAndSenderId(String processSerialNumber, String senderId)
- Specified by:
findByProcessSerialNumberAndSenderIdin interfaceDocumentCopyService
-
findByOpinionCopyId
public List<DocumentCopy> findByOpinionCopyId(String opinionCopyId)
- Specified by:
findByOpinionCopyIdin interfaceDocumentCopyService
-
findByProcessSerialNumberAndUserIdAndStatus
public List<DocumentCopy> findByProcessSerialNumberAndUserIdAndStatus(String processSerialNumber, String userId, Integer status)
- Specified by:
findByProcessSerialNumberAndUserIdAndStatusin interfaceDocumentCopyService
-
findByProcessSerialNumberAndUserId
public List<DocumentCopy> findByProcessSerialNumberAndUserId(String processSerialNumber, String userId)
- Specified by:
findByProcessSerialNumberAndUserIdin interfaceDocumentCopyService
-
save
@Transactional public void save(List<DocumentCopy> documentCopyList)
- Specified by:
savein interfaceDocumentCopyService
-
save
@Transactional public void save(DocumentCopy documentCopy)
- Specified by:
savein interfaceDocumentCopyService
-
findById
public Optional<DocumentCopy> findById(String id)
- Specified by:
findByIdin interfaceDocumentCopyService
-
-