| | |
| | | } |
| | | |
| | | @GetMapping("getThreeOne") |
| | | @ApiOperation("清淤三一地址") |
| | | @ApiOperation("获取三一视频地址") |
| | | public AjaxResult getThreeOne() { |
| | | return AjaxResult.success("获取地址成功!",sysConfigService.selectConfigByKey("syCarPT")); |
| | | return AjaxResult.success("获取地址成功!",sysConfigService.selectConfigByKey("threeOneVideo")); |
| | | } |
| | | |
| | | } |
| | |
| | | @Override |
| | | public List<SysDept> allByUser(List<Long> deptList) { |
| | | QueryWrapper<SysDept> queryWrapper = new QueryWrapper(); |
| | | queryWrapper.in("dept_id",deptList); |
| | | queryWrapper.in("dept_id",deptList).eq("del_flag","0"); |
| | | return deptMapper.selectList(queryWrapper); |
| | | } |
| | | |