|
|
@@ -24,21 +24,21 @@ public class GropMenuAthrController {
|
|
|
|
|
|
private final GropMenuAthrService service;
|
|
|
|
|
|
- @ApiOperation(value = "전체조회(TB_GROP_MENU_ATHR)", response = GropMenuAthrDto.GropMenuAthrInfo.class)
|
|
|
+ @ApiOperation(value = "전체조회(TB_USERGROP_INFR, TB_GROP_MENU_ATHR, TB_OPERSYST_MENU)", response = GropMenuAthrDto.GropMenuAthrInfo.class)
|
|
|
@GetMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<GropMenuAthrDto.GropMenuAthrInfo>> findAll() {
|
|
|
List<GropMenuAthrDto.GropMenuAthrInfo> result = this.service.findAll();
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "개별조회(TB_GROP_MENU_ATHR)", response = GropMenuAthrDto.GropMenuAthrInfo.class)
|
|
|
+ @ApiOperation(value = "개별조회(TB_USERGROP_INFR, TB_GROP_MENU_ATHR, TB_OPERSYST_MENU)", response = GropMenuAthrDto.GropMenuAthrInfo.class)
|
|
|
@GetMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<GropMenuAthrDto.GropMenuAthrInfo>> findById(@PathVariable("id") String id) {
|
|
|
List<GropMenuAthrDto.GropMenuAthrInfo> result = this.service.findById(id);
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "메뉴권한변경(TB_GROP_MENU_ATHR))", response = GropMenuAthrDto.GropMenuAthrInfo.class)
|
|
|
+ @ApiOperation(value = "메뉴권한변경(TB_USERGROP_INFR, TB_GROP_MENU_ATHR, TB_OPERSYST_MENU))", response = GropMenuAthrDto.GropMenuAthrInfo.class)
|
|
|
@PostMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
public ResponseEntity<List<GropMenuAthrDto.GropMenuAthrInfo>> mergeInfo(@RequestBody @Valid final List<GropMenuAthrDto.GropMenuAthrUpdateReq> req) {
|
|
|
List<GropMenuAthrDto.GropMenuAthrInfo> result = new ArrayList<>();
|