接口 DocumentWpsApi
-
public interface DocumentWpsApiWPS正文接口- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/19
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<DocumentWpsModel>findById(String tenantId, String id)根据id查询WPS正文net.risesoft.pojo.Y9Result<DocumentWpsModel>findByProcessSerialNumber(String tenantId, String processSerialNumber)根据流程编号查询WPS正文net.risesoft.pojo.Y9Result<Object>saveDocumentWps(String tenantId, DocumentWpsModel documentWpsModel)保存WPS正文net.risesoft.pojo.Y9Result<Object>saveWpsContent(String tenantId, String processSerialNumber, String hasContent)保存WPS正文内容
-
-
-
方法详细资料
-
findById
@GetMapping("/findById") net.risesoft.pojo.Y9Result<DocumentWpsModel> findById(@RequestParam("tenantId") String tenantId, @RequestParam("id") String id)根据id查询WPS正文- 参数:
tenantId- 租户idid- id- 返回:
Y9Result<DocumentWpsModel>通用请求返回对象 - data 是wps文档- 从以下版本开始:
- 9.6.6
-
findByProcessSerialNumber
@GetMapping("/findByProcessSerialNumber") net.risesoft.pojo.Y9Result<DocumentWpsModel> findByProcessSerialNumber(@RequestParam("tenantId") String tenantId, @RequestParam("processSerialNumber") String processSerialNumber)根据流程编号查询WPS正文- 参数:
tenantId- 租户idprocessSerialNumber- 流程编号- 返回:
Y9Result<DocumentWpsModel>通用请求返回对象- data 是wps文档- 从以下版本开始:
- 9.6.6
-
saveDocumentWps
@PostMapping(value="/saveDocumentWps", consumes="application/json") net.risesoft.pojo.Y9Result<Object> saveDocumentWps(@RequestParam("tenantId") String tenantId, @RequestBody DocumentWpsModel documentWpsModel)保存WPS正文- 参数:
tenantId- 租户iddocumentWpsModel- wps文档对象- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
saveWpsContent
@PostMapping("/saveWpsContent") net.risesoft.pojo.Y9Result<Object> saveWpsContent(@RequestParam("tenantId") String tenantId, @RequestParam("processSerialNumber") String processSerialNumber, @RequestParam("hasContent") String hasContent)保存WPS正文内容- 参数:
tenantId- 租户idprocessSerialNumber- 流程编号hasContent- 是否有内容- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
-