|
@@ -35,11 +35,11 @@ public class TbUnitSystSttsHsController {
|
|
|
@ApiOperation(value = "이력조회(TB_UNIT_SYST_STTS_HS, TB_UNIT_SYST)", response = TbUnitSystSttsHsDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbUnitSystSttsHsDto> findAll(
|
|
|
- @ApiParam(name = "SYST_ID", value = "시스템 ID(syst_id)", example = "UTP01", required = true)
|
|
|
- @RequestParam String SYST_ID,
|
|
|
- @ApiParam(name = "CRTN_DT", value = "이력조회일자(YYYYMMDD)", example = "20220125", required = true)
|
|
|
- @RequestParam String CRTN_DT) {
|
|
|
- return service.findAllByDateRange(SYST_ID, CRTN_DT);
|
|
|
+ @ApiParam(name = "systId", value = "시스템 ID(syst_id)", example = "UTP01", required = true)
|
|
|
+ @RequestParam String systId,
|
|
|
+ @ApiParam(name = "crtnDt", value = "이력조회일자(YYYYMMDD)", example = "20220125", required = true)
|
|
|
+ @RequestParam String crtnDt) {
|
|
|
+ return service.findAllByDateRange(systId, crtnDt);
|
|
|
}
|
|
|
|
|
|
}
|