| | |
| | | @Autowired |
| | | ISiteMessageService iSiteMessageService; |
| | | |
| | | @Autowired |
| | | ISiteUserOptionLogService iSiteUserOptionLogService; |
| | | |
| | | //分页查询日志管理 所有定时任务信息及模糊查询 |
| | | @RequestMapping({"taskList.do"}) |
| | | @ResponseBody |
| | |
| | | } |
| | | |
| | | |
| | | |
| | | @RequestMapping("optionList.do") |
| | | @ResponseBody |
| | | public ServerResponse optionList(@RequestParam(value = "userId", required = false) Integer userId, @RequestParam(value = "pageNum", defaultValue = "1") int pageNum, @RequestParam(value = "pageSize", defaultValue = "10") int pageSize){ |
| | | return this.iSiteUserOptionLogService.list(null,userId,pageNum,pageSize); |
| | | } |
| | | |
| | | } |
| | | |