接口 QuickSendApi


  • @Validated
    public interface QuickSendApi
    快捷发送
    作者:
    zhangchongjie
    Date:
    2023/09/07
    • 方法详细资料

      • getAssignee

        @GetMapping("/getAssignee")
        net.risesoft.pojo.Y9Result<String> getAssignee​(@RequestParam("tenantId") @NotBlank
                                                       @NotBlank String tenantId,
                                                       @RequestParam("orgUnitId") @NotBlank
                                                       @NotBlank String orgUnitId,
                                                       @RequestParam("itemId") @NotBlank
                                                       @NotBlank String itemId,
                                                       @RequestParam("taskKey") @NotBlank
                                                       @NotBlank String taskKey)
        获取快速发送设置
        参数:
        tenantId - 租户id
        orgUnitId - 人员、岗位id
        itemId - 事项id
        taskKey - 任务key
        返回:
        Y9Result<String> 通用请求返回对象 - data 是快捷发送人
        从以下版本开始:
        9.6.6
      • saveOrUpdate

        @PostMapping("/saveOrUpdate")
        net.risesoft.pojo.Y9Result<String> saveOrUpdate​(@RequestParam("tenantId") @NotBlank
                                                        @NotBlank String tenantId,
                                                        @RequestParam("orgUnitId") @NotBlank
                                                        @NotBlank String orgUnitId,
                                                        @RequestParam("itemId") @NotBlank
                                                        @NotBlank String itemId,
                                                        @RequestParam("taskKey") @NotBlank
                                                        @NotBlank String taskKey,
                                                        @RequestParam("assignee")
                                                        String assignee)
        保存快速发送设置
        参数:
        tenantId - 租户id
        orgUnitId - 人员、岗位id
        itemId - 事项id
        taskKey - 任务key
        assignee - 发送人
        返回:
        Y9Result<String> 通用请求返回对象
        从以下版本开始:
        9.6.6