|
@@ -1,7 +1,6 @@
|
|
|
package com.its.op.controller.its.scrs;
|
|
|
|
|
|
import com.its.op.dto.its.scrs.TbScSpclDdHmsCntlDto;
|
|
|
-import com.its.op.entity.its.scrs.TbScSpclDdHmsCntlKey;
|
|
|
import com.its.op.service.its.scrs.TbScSpclDdHmsCntlService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -35,12 +34,12 @@ public class TbScSpclDdHmsCntlController {
|
|
|
return this.service.findAllList();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "특수 일 시각 제어 개별조회(TB_SC_SPCL_DD_HMS_CNTL)", response = TbScSpclDdHmsCntlDto.class)
|
|
|
+ @ApiOperation(value = "특수 일 시각 제어 개별조회(TB_SC_SPCL_DD_HMS_CNTL)", response = TbScSpclDdHmsCntlDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/{ixrGrop}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbScSpclDdHmsCntlDto findById(@PathVariable("ixrGrop") final TbScSpclDdHmsCntlKey ixrGrop) {
|
|
|
- return this.service.findById(ixrGrop);
|
|
|
+ public List<TbScSpclDdHmsCntlDto> findAllListById(@PathVariable("ixrGrop") final Integer ixrGrop) {
|
|
|
+ return this.service.findAllListById(ixrGrop);
|
|
|
}
|
|
|
-//
|
|
|
+
|
|
|
// @ApiOperation(value = "특수 일 시각 제어 정보변경(TB_SC_SPCL_DD_HMS_CNTL)", response = TbScSpclDdHmsCntlDto.class)
|
|
|
// @PutMapping(value = "/{ixrGrop}", produces = {"application/json; charset=utf8"})
|
|
|
// public TbScSpclDdHmsCntlDto updateById(@PathVariable("ixrGrop") final TbScSpclDdHmsCntlKey ixrGrop, @RequestBody @Valid final TbScSpclDdHmsCntlDto.TbScSpclDdHmsCntlUpdReq req) {
|