| | |
| | | import com.gkhy.exam.common.domain.TreeSelect; |
| | | import com.gkhy.exam.common.domain.entity.SysDept; |
| | | import com.gkhy.exam.system.domain.SysFunctionalDistribution; |
| | | import com.gkhy.exam.system.domain.SysFunctionalRemark; |
| | | import com.gkhy.exam.system.domain.req.SysDeptPageReq; |
| | | import com.gkhy.exam.system.domain.vo.DeptVo; |
| | | import com.gkhy.exam.system.domain.vo.FunctionalDistributionVo; |
| | |
| | | return CommonResult.success(functionalDistributionList); |
| | | } |
| | | |
| | | @GetMapping("/functionalRemarkList") |
| | | @ApiOperation(value = "职能分配备注数据") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "Long", required = true, value = "公司id"), |
| | | }) |
| | | public CommonResult functionalRemarkList(@RequestParam Long companyId) |
| | | { |
| | | List<SysFunctionalRemark> functionalRemarkList = deptService.getFunctionalRemarkList(companyId); |
| | | |
| | | return CommonResult.success(functionalRemarkList); |
| | | } |
| | | |
| | | |
| | | @PostMapping("/saveFunctionalDistribution") |
| | | @ApiOperation(value = "保存职能分配") |