Package net.risesoft.service.impl
Class DocumentWpsServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.DocumentWpsServiceImpl
-
- All Implemented Interfaces:
DocumentWpsService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class DocumentWpsServiceImpl extends Object implements DocumentWpsService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description DocumentWpsServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocumentWpsfindById(String id)根据id获取正文信息DocumentWpsfindByProcessSerialNumber(String processSerialNumber)根据流程编号获取正文voidsaveDocumentWps(DocumentWps documentWps)保存正文信息voidsaveWpsContent(String processSerialNumber, String hasContent)保存正文内容状态voidupdateProcessInstanceId(String processSerialNumber, String processInstanceId)保存正文流程实例id
-
-
-
Method Detail
-
findById
public DocumentWps findById(String id)
Description copied from interface:DocumentWpsService根据id获取正文信息- Specified by:
findByIdin interfaceDocumentWpsService- Returns:
-
findByProcessSerialNumber
public DocumentWps findByProcessSerialNumber(String processSerialNumber)
Description copied from interface:DocumentWpsService根据流程编号获取正文- Specified by:
findByProcessSerialNumberin interfaceDocumentWpsService- Returns:
-
saveDocumentWps
@Transactional public void saveDocumentWps(DocumentWps documentWps)
Description copied from interface:DocumentWpsService保存正文信息- Specified by:
saveDocumentWpsin interfaceDocumentWpsService
-
saveWpsContent
@Transactional public void saveWpsContent(String processSerialNumber, String hasContent)
Description copied from interface:DocumentWpsService保存正文内容状态- Specified by:
saveWpsContentin interfaceDocumentWpsService
-
updateProcessInstanceId
@Transactional public void updateProcessInstanceId(String processSerialNumber, String processInstanceId)
Description copied from interface:DocumentWpsService保存正文流程实例id- Specified by:
updateProcessInstanceIdin interfaceDocumentWpsService
-
-