Package net.risesoft.service
Interface DocumentWpsService
-
- All Known Implementing Classes:
DocumentWpsServiceImpl
public interface DocumentWpsService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Method Summary
All Methods Instance Methods Abstract 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
DocumentWps findById(String id)
根据id获取正文信息- Parameters:
id-- Returns:
-
findByProcessSerialNumber
DocumentWps findByProcessSerialNumber(String processSerialNumber)
根据流程编号获取正文- Parameters:
processSerialNumber-- Returns:
-
saveDocumentWps
void saveDocumentWps(DocumentWps documentWps)
保存正文信息- Parameters:
documentWps-
-
saveWpsContent
void saveWpsContent(String processSerialNumber, String hasContent)
保存正文内容状态- Parameters:
processSerialNumber-hasContent-
-
-