| | |
| | | package com.yuanchu.mom.controller; |
| | | |
| | | import com.yuanchu.mom.annotation.ValueAuth; |
| | | import com.yuanchu.mom.annotation.ValueClassify; |
| | | import com.yuanchu.mom.pojo.Department; |
| | | import com.yuanchu.mom.pojo.DepartmentLims; |
| | |
| | | public Result delDepartmentLims(Integer id) { |
| | | return Result.success(departmentLimsService.delDepartment(id)); |
| | | } |
| | | |
| | | @ValueAuth |
| | | @ApiOperation(value = "获取组织架构枚举") |
| | | @GetMapping("/selectDepartmentEnum") |
| | | public Result selectDepartmentEnum() { |
| | | return Result.success(departmentService.selectDepartmentEnum()); |
| | | } |
| | | } |