|
|
@@ -1,7 +1,6 @@
|
|
|
package com.its.op.controller.its.scrs;
|
|
|
|
|
|
import com.its.op.dto.its.scrs.TbScIxrPhasDto;
|
|
|
-import com.its.op.entity.its.scrs.TbScIxrPhasKey;
|
|
|
import com.its.op.service.its.scrs.TbScIxrPhasService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
@@ -35,10 +34,10 @@ public class TbScIxrPhasController {
|
|
|
return this.service.findAllList();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "교차로 현시 개별조회(TB_SC_IXR_PHAS)", response = TbScIxrPhasDto.class)
|
|
|
+ @ApiOperation(value = "교차로 현시 개별조회(TB_SC_IXR_PHAS)", response = TbScIxrPhasDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/{sgnlIxrNmbr}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbScIxrPhasDto findById(@PathVariable("sgnlIxrNmbr") final TbScIxrPhasKey sgnlIxrNmbr) {
|
|
|
- return this.service.findById(sgnlIxrNmbr);
|
|
|
+ public List<TbScIxrPhasDto> findListById(@PathVariable("sgnlIxrNmbr") final Integer sgnlIxrNmbr) {
|
|
|
+ return this.service.findListById(sgnlIxrNmbr);
|
|
|
}
|
|
|
//
|
|
|
// @ApiOperation(value = "교차로 현시 정보변경(TB_SC_IXR_PHAS)", response = TbScIxrPhasDto.class)
|