| | |
| | | import com.fzzy.igds.domain.Dept; |
| | | import com.fzzy.igds.domain.DicArea; |
| | | import com.fzzy.igds.domain.Slogan; |
| | | import com.fzzy.igds.domain.SnapRecord; |
| | | import com.fzzy.igds.utils.ContextUtil; |
| | | import com.fzzy.igds.websocket.WebSocketPacket; |
| | | import com.fzzy.common.manager.CommonManager; |
| | |
| | | |
| | | //查询库区信息 |
| | | List<Dept> deptList = groupManager.getAllDept(user.getCompanyId()); |
| | | view.put("deptList", deptList); |
| | | view.put("deptAllList", deptList); |
| | | |
| | | return prefix + "/index"; |
| | | } |
| | |
| | | view.put("allArea", allArea); |
| | | |
| | | //获取所有库区 |
| | | List<Dept> deptList = groupManager.getAllDept(user.getCompanyId()); |
| | | List<GroupDeptData> deptList = groupManager.getDeptData(user.getCompanyId()); |
| | | view.put("deptList", deptList); |
| | | |
| | | //统计信息 |
| | |
| | | return groupManager.indexDeptList(param); |
| | | } |
| | | |
| | | /** |
| | | * 首页--抓拍跟踪信息 |
| | | * |
| | | * @param param |
| | | * @return |
| | | */ |
| | | @RequestMapping("/index-snap-list") |
| | | @ResponseBody |
| | | public PageResponse<List<SnapRecord>> indexSnapList(@RequestBody IgdsBaseParam param) { |
| | | |
| | | return groupManager.indexSnapList(param); |
| | | } |
| | | |
| | | } |