|
|
@@ -81,6 +81,15 @@ public class TbFcltFailController {
|
|
|
return this.service.findAllTypeListByDate(type, true, fromDay, toDay);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @ApiOperation(value = "그룹별 시설물 장애 현황 조회(완료항목 포함)", response = TbFcltFailDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/list/type/all/group/{group}/{fromDay}/{toDay}", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbFcltFailDto> findAllGroupTypeListByDate(@PathVariable("group") final String group,
|
|
|
+ @PathVariable("fromDay") final String fromDay,
|
|
|
+ @PathVariable("toDay") final String toDay) {
|
|
|
+ return this.service.findAllGroupTypeListByDate(group, fromDay, toDay);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "유형별 시설물 장애 관리 목록 조회(완료항목제외)", response = TbFcltFailDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/list/type/mng/{type}/{fromDay}/{toDay}", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbFcltFailDto> findRegTypeListByDate(@PathVariable("type") final String type,
|