|
@@ -43,12 +43,12 @@ public class TbMsWebMemberController {
|
|
|
// public TbMsWebMemberDto updateById(@PathVariable final String id, @RequestBody @Valid final TbMsWebMemberDto.TbMsWebMemberUpdReq req) {
|
|
|
// return this.service.updateById(id, req);
|
|
|
// }
|
|
|
-//
|
|
|
-// @ApiOperation(value = " 정보변경/생성-목록(TB_MS_WEB_MEMBER)", response = TbMsWebMemberDto.class, responseContainer = "ArrayList")
|
|
|
-// @PostMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
-// public List<TbMsWebMemberDto> mergeInfoList(@RequestBody @Valid final List<TbMsWebMemberDto.TbMsWebMemberUpdReq> listReq) {
|
|
|
-// return this.service.mergeInfoList(listReq);
|
|
|
-// }
|
|
|
+
|
|
|
+ @ApiOperation(value = " 정보변경/생성-목록(TB_MS_WEB_MEMBER)", response = TbMsWebMemberDto.class, responseContainer = "ArrayList")
|
|
|
+ @PostMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbMsWebMemberDto> mergeInfoList(@RequestBody @Valid final List<TbMsWebMemberDto.TbMsWebMemberUpdReq> listReq) {
|
|
|
+ return this.service.mergeInfoList(listReq);
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation(value = "홈페이지관리자 정보변경/생성-개별(TB_MS_WEB_MEMBER)", response = TbMsWebMemberDto.class)
|
|
|
@PostMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
@@ -62,10 +62,10 @@ public class TbMsWebMemberController {
|
|
|
return this.service.deleteById(id);
|
|
|
}
|
|
|
|
|
|
-// @ApiOperation(value = " 정보삭제-목록(TB_MS_WEB_MEMBER)", response = TbMsWebMemberDto.class, responseContainer = "ArrayList")
|
|
|
-// @DeleteMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
-// public List<TbMsWebMemberDto> deleteDataByIds(@RequestBody @Valid final List<String> ids) {
|
|
|
-// return this.service.deleteByIds(ids);
|
|
|
-// }
|
|
|
+ @ApiOperation(value = " 정보삭제-목록(TB_MS_WEB_MEMBER)", response = TbMsWebMemberDto.class, responseContainer = "ArrayList")
|
|
|
+ @DeleteMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbMsWebMemberDto> deleteDataByIds(@RequestBody @Valid final List<String> ids) {
|
|
|
+ return this.service.deleteByIds(ids);
|
|
|
+ }
|
|
|
|
|
|
}
|