| | |
| | | @RequestMapping(value = "/getUserTasks", method = RequestMethod.POST) |
| | | public List<ComplaintDto> getUserTasks(@RequestBody AuditUser user); |
| | | |
| | | /** |
| | | * 查询用户处理任务数 |
| | | * |
| | | * @param user |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getUserHistoryTaskCount", method = RequestMethod.POST) |
| | | public long getUserHistoryTaskCount(@RequestBody AuditUser user); |
| | | /** |
| | | * 获取用户处理审批的任务 |
| | | * |
| | | * @param user 用户信息 |
| | | */ |
| | | @RequestMapping(value = "/getUserHistoryTasks", method = RequestMethod.POST) |
| | | public List<ComplaintDto> getUserHistoryTasks(@RequestBody AuditUser user); |
| | | |
| | | |
| | | /** |
| | | * 处理任务 |
| | |
| | | @RequestMapping(value = "/getAuditMessage", method = RequestMethod.POST) |
| | | public List<AuditMessageDto> getAuditMessage(@RequestBody ComplaintDto complaintDto); |
| | | |
| | | /** |
| | | * 获取任务当前处理人 |
| | | * @param complaintDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getTaskCurrentUser", method = RequestMethod.POST) |
| | | public ComplaintDto getTaskCurrentUser(@RequestBody ComplaintDto complaintDto); |
| | | |
| | | } |