Class LwInfoApiImpl

  • All Implemented Interfaces:
    LwInfoApi

    @RestController
    @RequestMapping(value="/services/rest/lwInfo",
                    produces="application/json")
    public class LwInfoApiImpl
    extends Object
    implements LwInfoApi
    来文信息接口
    Author:
    qinman, zhangchongjie
    Date:
    2022/12/20
    • Constructor Detail

      • LwInfoApiImpl

        public LwInfoApiImpl()
    • Method Detail

      • delLwInfo

        public net.risesoft.pojo.Y9Result<Object> delLwInfo​(String tenantId,
                                                            String id)
        删除来文信息
        Specified by:
        delLwInfo in interface LwInfoApi
        Parameters:
        tenantId - 租户id
        processSerialNumber - 流程编号
        Returns:
        Y9Result<Object> 通用请求返回对象
        Since:
        9.6.6
      • findByProcessSerialNumber

        public net.risesoft.pojo.Y9Result<List<LwLinkBwModel>> findByProcessSerialNumber​(@RequestParam
                                                                                         String tenantId,
                                                                                         @RequestParam
                                                                                         String processSerialNumber)
        获取来文信息列表
        Specified by:
        findByProcessSerialNumber in interface LwInfoApi
        Parameters:
        tenantId - 租户id
        processSerialNumber - 流程编号
        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:
        saveLwInfo in interface LwInfoApi
        Parameters:
        tenantId - 租户id
        lwInfoModel - 来文信息
        Returns:
        Y9Result<Object> 通用请求返回对象
        Since:
        9.6.6