|
|
@@ -4,10 +4,12 @@ import com.its.op.dto.its.rse.TbRseSectTrafHsDto;
|
|
|
import com.its.op.service.its.rse.TbRseSectTrafHsService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
|
@@ -21,10 +23,23 @@ public class TbRseSectTrafHsController {
|
|
|
|
|
|
private final TbRseSectTrafHsService service;
|
|
|
|
|
|
- @ApiOperation(value = "RSE 구간 소통상황 전체조회(TB_RSE_SECT_TRAF_HS)", response = TbRseSectTrafHsDto.class, responseContainer = "ArrayList")
|
|
|
+// @ApiOperation(value = "RSE 구간 소통상황 전체조회(TB_RSE_SECT_TRAF_HS)", response = TbRseSectTrafHsDto.class, responseContainer = "ArrayList")
|
|
|
+// @GetMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
+// public List<TbRseSectTrafHsDto> findAll() {
|
|
|
+// return this.service.findAll();
|
|
|
+// }
|
|
|
+
|
|
|
+ @ApiOperation(value = "RSE 구간 소통상황 이력조회(TB_RSE_SECT_TRAF_HS)", response = TbRseSectTrafHsDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
- public List<TbRseSectTrafHsDto> findAll() {
|
|
|
- return this.service.findAll();
|
|
|
+ public List<TbRseSectTrafHsDto> findAllByDateRange(
|
|
|
+ @ApiParam(name = "FROM_DT", value = "조회시작시각(YYYYMMDDHH24MI00)", example = "20210112152000", required = true)
|
|
|
+ @RequestParam String FROM_DT,
|
|
|
+ @ApiParam(name = "TO_DT", value = "조회종료시각(YYYYMMDDHH24MI59)", example = "20221112152000", required = true)
|
|
|
+ @RequestParam String TO_DT,
|
|
|
+ @ApiParam(name = "id", value = "RSE 구간 ID 목록", example = "[10011002,10011004]", required = true)
|
|
|
+ @RequestParam List<Long> ids
|
|
|
+ ) {
|
|
|
+ return this.service.findAllByDateRange(FROM_DT, TO_DT, ids);
|
|
|
}
|
|
|
|
|
|
}
|