Package net.risesoft.service.impl
Class DocumentWordServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.DocumentWordServiceImpl
-
- All Implemented Interfaces:
DocumentWordService
@Service @Transactional(value="rsTenantTransactionManager", readOnly=true) public class DocumentWordServiceImpl extends Object implements DocumentWordService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description DocumentWordServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete 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
@Transactional public net.risesoft.pojo.Y9Result<Object> copyByProcessSerialNumberAndWordType(String sourceProcessSerialNumber, String targetProcessSerialNumber, String wordType)
- Specified by:
copyByProcessSerialNumberAndWordTypein interfaceDocumentWordService
-
findByProcessSerialNumberAndWordType
public List<DocumentWordModel> findByProcessSerialNumberAndWordType(String processSerialNumber, String wordType)
Description copied from interface:DocumentWordService根据流程编号和正文类型查询正文信息- Specified by:
findByProcessSerialNumberAndWordTypein interfaceDocumentWordService- Parameters:
processSerialNumber- 流程编号wordType- 正文类型- Returns:
- List
-
findWordById
public DocumentWord findWordById(String id)
Description copied from interface:DocumentWordService根据id查询正文信息- Specified by:
findWordByIdin interfaceDocumentWordService- Parameters:
id- id- Returns:
- DocumentWord
-
replaceWord
@Transactional public void replaceWord(DocumentWord documentWord, String oldId, String taskId)
Description copied from interface:DocumentWordService替换正文- Specified by:
replaceWordin interfaceDocumentWordService- Parameters:
documentWord- documentWord
-
saveWord
@Transactional public DocumentWord saveWord(DocumentWord documentWord)
Description copied from interface:DocumentWordService保存正文信息- Specified by:
saveWordin interfaceDocumentWordService- Parameters:
documentWord- documentWord
-
-