|
|
@@ -3,6 +3,7 @@ package com.its.op.controller.its.database;
|
|
|
import com.its.op.dto.its.oper.TbOperSystDto;
|
|
|
import com.its.op.dto.its.oper.TbUserGropInfrDto;
|
|
|
import com.its.op.dto.its.oper.TbUserInfrDto;
|
|
|
+import com.its.op.dto.its.oper.UserMenuDto;
|
|
|
import com.its.op.service.its.oper.TbOperSystService;
|
|
|
import com.its.op.service.its.oper.TbUserGropInfrService;
|
|
|
import com.its.op.service.its.oper.TbUserInfrService;
|
|
|
@@ -90,4 +91,12 @@ public class TbUserInfrController {
|
|
|
return this.service.deleteByIds(ids);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "사용자정보 접근제한 메뉴정보", response = UserMenuDto.class)
|
|
|
+ @GetMapping(value = "/menu-auth/{id}", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<UserMenuDto> findByIdMenuAthr(
|
|
|
+ @ApiParam(name = "id", value = "사용자 ID", example = "ADMIN", required = true)
|
|
|
+ @PathVariable final String id) {
|
|
|
+ return this.service.findByIdMenuAthr(id);
|
|
|
+ }
|
|
|
+
|
|
|
}
|