Class QuickSendApiImpl

  • All Implemented Interfaces:
    QuickSendApi

    @Validated
    @RestController
    @RequestMapping(value="/services/rest/quickSend",
                    produces="application/json")
    public class QuickSendApiImpl
    extends Object
    implements QuickSendApi
    快速发送设置接口
    Author:
    zhangchongjie
    Date:
    2023/09/07
    • Constructor Detail

      • QuickSendApiImpl

        public QuickSendApiImpl()
    • Method Detail

      • getAssignee

        public net.risesoft.pojo.Y9Result<String> getAssignee​(@RequestParam
                                                              String tenantId,
                                                              @RequestParam
                                                              String orgUnitId,
                                                              @RequestParam
                                                              String itemId,
                                                              @RequestParam
                                                              String taskKey)
        获取设置的快速发送人信息
        Specified by:
        getAssignee in interface QuickSendApi
        Parameters:
        tenantId - 租户id
        orgUnitId - 人员、岗位id
        itemId - 事项id
        taskKey - 任务key
        Returns:
        Y9Result<String> 通用请求返回对象 - data 是快捷发送人
        Since:
        9.6.6
      • saveOrUpdate

        public net.risesoft.pojo.Y9Result<String> saveOrUpdate​(@RequestParam
                                                               String tenantId,
                                                               @RequestParam
                                                               String orgUnitId,
                                                               @RequestParam
                                                               String itemId,
                                                               @RequestParam
                                                               String taskKey,
                                                               @RequestParam
                                                               String assignee)
        保存快速发送人信息设置
        Specified by:
        saveOrUpdate in interface QuickSendApi
        Parameters:
        tenantId - 租户id
        orgUnitId - 人员、岗位id
        itemId - 事项id
        taskKey - 任务key
        assignee - 发送人
        Returns:
        Y9Result<String> 通用请求返回对象
        Since:
        9.6.6