| | |
| | | package com.fzzy.sys.controller.monitor; |
| | | |
| | | import com.fzzy.igds.service.DicService; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | |
| | | @Autowired |
| | | private ISysOperLogService operLogService; |
| | | |
| | | @Autowired |
| | | private DicService dicService; |
| | | |
| | | @RequiresPermissions("monitor:operlog:view") |
| | | @GetMapping() |
| | | public String operlog() { |
| | | public String operlog(ModelMap mmap) { |
| | | mmap.put("bizTypeDatas", dicService.getBizType()); |
| | | return prefix + "/operlog"; |
| | | } |
| | | |