Commit c29dd8ad by tangzhaoqian

权限

parent 25a31d4f
...@@ -210,7 +210,6 @@ public class JxglController { ...@@ -210,7 +210,6 @@ public class JxglController {
@GetMapping(value = "/select_basic_setting") @GetMapping(value = "/select_basic_setting")
@ApiOperation(value = "2.查询-基础设置", httpMethod = "GET", notes = "查询-基础设置") @ApiOperation(value = "2.查询-基础设置", httpMethod = "GET", notes = "查询-基础设置")
@ApiOperationSupport(order = 2) @ApiOperationSupport(order = 2)
@Role
public Result<Object> selectAT(@CurrentUser UserBean userBean) { public Result<Object> selectAT(@CurrentUser UserBean userBean) {
JxglBasicSetting bS = jxglService.selectAT(userBean.getOrgCode()); JxglBasicSetting bS = jxglService.selectAT(userBean.getOrgCode());
...@@ -291,7 +290,6 @@ public class JxglController { ...@@ -291,7 +290,6 @@ public class JxglController {
@PostMapping(value = "/selects_appraisal_t") @PostMapping(value = "/selects_appraisal_t")
@ApiOperation(value = "4.查询-考核模板-列表", httpMethod = "POST", notes = "查询-考核模板-列表") @ApiOperation(value = "4.查询-考核模板-列表", httpMethod = "POST", notes = "查询-考核模板-列表")
@ApiOperationSupport(order = 4) @ApiOperationSupport(order = 4)
@Role
public Result<Object> selectListAT(@CurrentUser UserBean userBean, @RequestBody cn.timer.api.utils.Page page) { public Result<Object> selectListAT(@CurrentUser UserBean userBean, @RequestBody cn.timer.api.utils.Page page) {
IPage<JxglAppraisalT> p = new Page<JxglAppraisalT>(page.getCurrentPage(), page.getTotalPage()); IPage<JxglAppraisalT> p = new Page<JxglAppraisalT>(page.getCurrentPage(), page.getTotalPage());
...@@ -1843,7 +1841,6 @@ public class JxglController { ...@@ -1843,7 +1841,6 @@ public class JxglController {
@PostMapping(value = "/selects_my_emp_performance") @PostMapping(value = "/selects_my_emp_performance")
@ApiOperation(value = "25.查询-我的绩效-员工绩效", httpMethod = "POST", notes = "查询-我的绩效-员工绩效") @ApiOperation(value = "25.查询-我的绩效-员工绩效", httpMethod = "POST", notes = "查询-我的绩效-员工绩效")
@ApiOperationSupport(order = 25) @ApiOperationSupport(order = 25)
@Role
@Log(title = "绩效管理-查询-我的绩效-员工绩效") @Log(title = "绩效管理-查询-我的绩效-员工绩效")
public Result<Object> selectsMEP(@CurrentUser UserBean userBean, @RequestBody EmpPerformanceQuery query) { public Result<Object> selectsMEP(@CurrentUser UserBean userBean, @RequestBody EmpPerformanceQuery query) {
Integer orgCode = userBean.getOrgCode(); Integer orgCode = userBean.getOrgCode();
...@@ -1889,5 +1886,4 @@ public class JxglController { ...@@ -1889,5 +1886,4 @@ public class JxglController {
return ResultUtil.data(pageA, listA); return ResultUtil.data(pageA, listA);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment