|
|
@@ -1,15 +1,15 @@
|
|
|
package com.its.op.controller.its.rse;
|
|
|
|
|
|
import com.its.op.dto.its.rse.TbRseObuClctHsDto;
|
|
|
-import com.its.op.entity.its.rse.TbRseObuClctHsKey;
|
|
|
import com.its.op.service.its.rse.TbRseObuClctHsService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
|
|
|
|
@Api(tags = "14.RSE-1.RSE 관리-RSE OBU 수집 이력")
|
|
|
@@ -27,40 +27,4 @@ public class TbRseObuClctHsController {
|
|
|
return this.service.findAll();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "RSE OBU 수집 이력 개별조회(TB_RSE_OBU_CLCT_HS)", response = TbRseObuClctHsDto.class)
|
|
|
- @GetMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbRseObuClctHsDto findById(@PathVariable final TbRseObuClctHsKey id) {
|
|
|
- return this.service.findById(id);
|
|
|
- }
|
|
|
-
|
|
|
- @ApiOperation(value = "RSE OBU 수집 이력 정보변경(TB_RSE_OBU_CLCT_HS)", response = TbRseObuClctHsDto.class)
|
|
|
- @PutMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbRseObuClctHsDto updateById(@PathVariable final TbRseObuClctHsKey id, @RequestBody @Valid final TbRseObuClctHsDto.TbRseObuClctHsUpdReq req) {
|
|
|
- return this.service.updateById(id, req);
|
|
|
- }
|
|
|
-
|
|
|
- @ApiOperation(value = "RSE OBU 수집 이력 정보변경/생성-목록(TB_RSE_OBU_CLCT_HS)", response = TbRseObuClctHsDto.class, responseContainer = "ArrayList")
|
|
|
- @PostMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
- public List<TbRseObuClctHsDto> mergeInfoList(@RequestBody @Valid final List<TbRseObuClctHsDto.TbRseObuClctHsUpdReq> listReq) {
|
|
|
- return this.service.mergeInfoList(listReq);
|
|
|
- }
|
|
|
-
|
|
|
- @ApiOperation(value = "RSE OBU 수집 이력 정보변경/생성-개별(TB_RSE_OBU_CLCT_HS)", response = TbRseObuClctHsDto.class)
|
|
|
- @PostMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbRseObuClctHsDto mergeInfo(@PathVariable("id") TbRseObuClctHsKey id, @RequestBody @Valid final TbRseObuClctHsDto.TbRseObuClctHsUpdReq req) {
|
|
|
- return this.service.mergeInfo(req);
|
|
|
- }
|
|
|
-
|
|
|
- @ApiOperation(value = "RSE OBU 수집 이력 정보삭제-개별(TB_RSE_OBU_CLCT_HS)", response = TbRseObuClctHsDto.class)
|
|
|
- @DeleteMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbRseObuClctHsDto deleteDataById(@PathVariable("id") TbRseObuClctHsKey id) {
|
|
|
- return this.service.deleteById(id);
|
|
|
- }
|
|
|
-
|
|
|
- @ApiOperation(value = "RSE OBU 수집 이력 정보삭제-목록(TB_RSE_OBU_CLCT_HS)", response = TbRseObuClctHsDto.class, responseContainer = "ArrayList")
|
|
|
- @DeleteMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
- public List<TbRseObuClctHsDto> deleteDataByIds(@RequestBody @Valid final List<TbRseObuClctHsKey> ids) {
|
|
|
- return this.service.deleteByIds(ids);
|
|
|
- }
|
|
|
-
|
|
|
}
|