| | |
| | | import com.ruoyi.system.dto.DeptDTO; |
| | | import com.ruoyi.system.dto.ProjectDeptDTO; |
| | | import com.ruoyi.system.model.TDept; |
| | | import com.ruoyi.system.model.TLocationType; |
| | | import com.ruoyi.system.model.TProjectDept; |
| | | import com.ruoyi.system.query.DeptListQuery; |
| | | import com.ruoyi.system.query.ProjectDeptListQuery; |
| | |
| | | deptService.updateById(byId); |
| | | return R.ok(); |
| | | } |
| | | @ApiOperation(value = "详情项目部") |
| | | @GetMapping(value = "/detail") |
| | | public R<TProjectDept> detail(@RequestParam String id) { |
| | | |
| | | return R.ok(deptService.getById(id)); |
| | | } |
| | | } |
| | | |