|
@@ -129,10 +129,9 @@ public class TodoController {
|
|
|
|
|
|
|
|
@GetMapping("/srm")
|
|
@GetMapping("/srm")
|
|
|
@PermitAll
|
|
@PermitAll
|
|
|
- public CommonResult<ImmutableMap<String, Object>> srmTodo(String workcode, String type, Integer pageNo, Integer pageSize) throws Exception {
|
|
|
|
|
- srmRest.getSrmToDoList(workcode, pageNo, pageSize);
|
|
|
|
|
-
|
|
|
|
|
- return CommonResult.success(null);
|
|
|
|
|
|
|
+ public CommonResult<ImmutableMap<String, Object>> srmTodo(String workcode, Integer pageNo, Integer pageSize) throws Exception {
|
|
|
|
|
+ ImmutableMap<String, Object> srmToDoList = srmRest.getSrmToDoList(workcode, pageNo, pageSize);
|
|
|
|
|
+ return CommonResult.success(srmToDoList);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@GetMapping("/crm/notice")
|
|
@GetMapping("/crm/notice")
|