Package net.risesoft.service
Interface DocumentWordService
-
- All Known Implementing Classes:
DocumentWordServiceImpl
public interface DocumentWordService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>copyByProcessSerialNumberAndWordType(String sourceProcessSerialNumber, String targetProcessSerialNumber, String wordType)List<DocumentWordModel>findByProcessSerialNumberAndWordType(String processSerialNumber, String wordType)根据流程编号和正文类型查询正文信息DocumentWordfindWordById(String id)根据id查询正文信息voidreplaceWord(DocumentWord documentWord, String oldId, String taskId)替换正文DocumentWordsaveWord(DocumentWord documentWord)保存正文信息
-
-
-
Method Detail
-
copyByProcessSerialNumberAndWordType
net.risesoft.pojo.Y9Result<Object> copyByProcessSerialNumberAndWordType(String sourceProcessSerialNumber, String targetProcessSerialNumber, String wordType)
-
findByProcessSerialNumberAndWordType
List<DocumentWordModel> findByProcessSerialNumberAndWordType(String processSerialNumber, String wordType)
根据流程编号和正文类型查询正文信息- Parameters:
processSerialNumber- 流程编号wordType- 正文类型- Returns:
- List
-
findWordById
DocumentWord findWordById(String id)
根据id查询正文信息- Parameters:
id- id- Returns:
- DocumentWord
-
replaceWord
void replaceWord(DocumentWord documentWord, String oldId, String taskId)
替换正文- Parameters:
documentWord- documentWordoldId-taskId-
-
saveWord
DocumentWord saveWord(DocumentWord documentWord)
保存正文信息- Parameters:
documentWord- documentWord
-
-