| | |
| | | package com.fzzy.sys.controller.security; |
| | | |
| | | import com.fzzy.igds.domain.Patrol; |
| | | import com.fzzy.igds.domain.PatrolConf; |
| | | import com.fzzy.igds.utils.ContextUtil; |
| | | import com.fzzy.sys.manager.common.CommonManager; |
| | | import com.fzzy.sys.manager.security.PatrolConfManager; |
| | | import com.fzzy.sys.manager.security.PatrolManager; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | |
| | | @Resource |
| | | private PatrolManager patrolManager; |
| | | |
| | | @Resource |
| | | private PatrolConfManager patrolConfManager; |
| | | |
| | | |
| | | @Resource |
| | | private CommonManager commonManager; |
| | | /** |
| | | * 电子巡更页面 |
| | | * |
| | |
| | | * @date 2025/12/06 |
| | | */ |
| | | @GetMapping() |
| | | public String patrol() { |
| | | public String patrol(ModelMap mmap) { |
| | | //获取库区回显列表 |
| | | mmap.put("deptList", commonManager.listDeptData()); |
| | | return prefix + "/patrol"; |
| | | } |
| | | |