|
@@ -29,17 +29,17 @@ public class TbLinkParaStupController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "개별조회(TB_LINK_PARA_STUP)", response = TbLinkParaStupDto.class)
|
|
|
- @GetMapping(value = "/{paramId}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbLinkParaStupDto findById(@PathVariable final Long paramId) {
|
|
|
- return this.service.findById(paramId);
|
|
|
+ @GetMapping(value = "/{paraId}", produces = {"application/json; charset=utf8"})
|
|
|
+ public TbLinkParaStupDto findById(@PathVariable final Long paraId) {
|
|
|
+ return this.service.findById(paraId);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "개별정보변경/생성(TB_LINK_PARA_STUP)", response = TbLinkParaStupDto.class)
|
|
|
- @PostMapping(value = "/{paramId}", produces = {"application/json; charset=utf8"})
|
|
|
+ @PostMapping(value = "/{paraId}", produces = {"application/json; charset=utf8"})
|
|
|
public TbLinkParaStupDto mergeInfo(
|
|
|
- @PathVariable final Long paramId,
|
|
|
+ @PathVariable final Long paraId,
|
|
|
@RequestBody final TbLinkParaStupDto.TbLinkParaStupModReq req) {
|
|
|
- return this.service.mergeInfo(paramId, req.getPara(), req.getDetl(), req.getClcts());
|
|
|
+ return this.service.mergeInfo(paraId, req.getPara(), req.getDetl(), req.getClcts());
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "신규 파라미터 ID 조회(TB_LINK_PARA_STUP)", response = NewIdLongDto.class)
|
|
@@ -49,11 +49,11 @@ public class TbLinkParaStupController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "파라미터 사용여부 조회(삭제시 사용)", response = UsageCountDto.class)
|
|
|
- @GetMapping(value = "/usage/{paramId}", produces = {"application/json; charset=utf8"})
|
|
|
+ @GetMapping(value = "/usage/{paraId}", produces = {"application/json; charset=utf8"})
|
|
|
public UsageCountDto findUsageId(
|
|
|
- @ApiParam(name = "paramId", value = "파라미터 ID", example = "1", required = true)
|
|
|
- @PathVariable final Long paramId) {
|
|
|
- return this.service.findUsageId(paramId);
|
|
|
+ @ApiParam(name = "paraId", value = "파라미터 ID", example = "1", required = true)
|
|
|
+ @PathVariable final Long paraId) {
|
|
|
+ return this.service.findUsageId(paraId);
|
|
|
}
|
|
|
|
|
|
// @ApiOperation(value = "파라미터 정보삭제-개별(TB_LINK_PARA_STUP)", response = TbAtrdDto.class)
|
|
@@ -63,18 +63,18 @@ public class TbLinkParaStupController {
|
|
|
// }
|
|
|
|
|
|
@ApiOperation(value = "선택구간 파라미터 적용", response = TbLinkParaStupDto.class)
|
|
|
- @PostMapping(value = "/apply/select/{paramId}/{ids}", produces = {"application/json; charset=utf8"})
|
|
|
+ @PostMapping(value = "/apply/select/{paraId}/{ids}", produces = {"application/json; charset=utf8"})
|
|
|
public TbLinkParaStupDto applyParamSelect(
|
|
|
- @PathVariable final Long paramId,
|
|
|
+ @PathVariable final Long paraId,
|
|
|
@PathVariable final List<Long> ids) {
|
|
|
- return this.service.applyParamSelect(paramId, ids);
|
|
|
+ return this.service.applyParamSelect(paraId, ids);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "전체구간 파라미터 적용", response = TbLinkParaStupDto.class)
|
|
|
- @PostMapping(value = "/apply/all/{paramId}", produces = {"application/json; charset=utf8"})
|
|
|
+ @PostMapping(value = "/apply/all/{paraId}", produces = {"application/json; charset=utf8"})
|
|
|
public TbLinkParaStupDto applyParamAll(
|
|
|
- @PathVariable final Long paramId) {
|
|
|
- return this.service.applyParamAll(paramId);
|
|
|
+ @PathVariable final Long paraId) {
|
|
|
+ return this.service.applyParamAll(paraId);
|
|
|
}
|
|
|
|
|
|
}
|