| | |
| | | |
| | | String CREATE_TASK_JOB_BY_CONDITION_HANDLER = API_PREFIX+"/createTaskJobByConditionHandler"; |
| | | |
| | | String CREATE_TASK = API_PREFIX+"/createTask"; |
| | | |
| | | /** |
| | | * 给巡查责任人定时创建任务执行器 |
| | | * @param processDefinitionId |
| | |
| | | List<Integer> createTaskJobHandler(@RequestParam("processDefinitionId") String processDefinitionId, |
| | | @RequestParam("taskType") String taskType, |
| | | @RequestParam("title") String title, |
| | | @RequestParam("content") String content); |
| | | @RequestParam("content") String content, |
| | | @RequestParam("type") int type); |
| | | |
| | | /** |
| | | * 给巡查责任人定时创建任务执行器 |
| | |
| | | @RequestParam("taskType") String taskType, |
| | | @RequestParam("title") String title, |
| | | @RequestParam("content") String content); |
| | | |
| | | @GetMapping(CREATE_TASK) |
| | | String createTask(@RequestParam("processDefinitionId") String processDefinitionId, |
| | | @RequestParam("taskType") String taskType, |
| | | @RequestParam("title") String title, |
| | | @RequestParam("content") String content, |
| | | @RequestParam("resCd") String resCd); |
| | | } |