Package net.risesoft.api
Class LwInfoApiImpl
- java.lang.Object
-
- net.risesoft.api.LwInfoApiImpl
-
-
Constructor Summary
Constructors Constructor Description LwInfoApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>delLwInfo(String tenantId, String id)删除来文信息net.risesoft.pojo.Y9Result<List<LwLinkBwModel>>findByProcessSerialNumber(String tenantId, String processSerialNumber)获取来文信息列表net.risesoft.pojo.Y9Result<Object>saveLwInfo(String tenantId, LwLinkBwModel lwInfoModel)保存来文信息
-
-
-
Method Detail
-
findByProcessSerialNumber
public net.risesoft.pojo.Y9Result<List<LwLinkBwModel>> findByProcessSerialNumber(@RequestParam String tenantId, @RequestParam String processSerialNumber)
获取来文信息列表- Specified by:
findByProcessSerialNumberin interfaceLwInfoApi- Parameters:
tenantId- 租户idprocessSerialNumber- 流程编号- Returns:
Y9Result<List<LwInfoModel>>通用请求返回对象 - data是附件列表- Since:
- 9.6.6
-
saveLwInfo
public net.risesoft.pojo.Y9Result<Object> saveLwInfo(@RequestParam String tenantId, @RequestBody LwLinkBwModel lwInfoModel)
保存来文信息- Specified by:
saveLwInfoin interfaceLwInfoApi- Parameters:
tenantId- 租户idlwInfoModel- 来文信息- Returns:
Y9Result<Object>通用请求返回对象- Since:
- 9.6.6
-
-