추론결과, 변화탐지 테이블 수정으로 인한 변경
This commit is contained in:
@@ -75,7 +75,7 @@ public class InferenceResultApiController {
|
||||
})
|
||||
@GetMapping("/summary/{id}")
|
||||
public ApiResponseDto<InferenceResultDto.AnalResSummary> getInferenceResultSummary(
|
||||
@Parameter(description = "목록 id", example = "1") @PathVariable Long id) {
|
||||
@Parameter(description = "목록 id", example = "53") @PathVariable Long id) {
|
||||
return ApiResponseDto.ok(inferenceResultService.getInferenceResultSummary(id));
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ public class InferenceResultApiController {
|
||||
})
|
||||
@GetMapping("/detail/{id}")
|
||||
public ApiResponseDto<InferenceResultDto.Detail> getInferenceDetail(
|
||||
@Parameter(description = "목록 id", example = "1") @PathVariable Long id) {
|
||||
@Parameter(description = "목록 id", example = "53") @PathVariable Long id) {
|
||||
return ApiResponseDto.ok(inferenceResultService.getDetail(id));
|
||||
}
|
||||
|
||||
@@ -113,7 +113,7 @@ public class InferenceResultApiController {
|
||||
})
|
||||
@GetMapping("/geom/{id}")
|
||||
public ApiResponseDto<Page<InferenceResultDto.Geom>> getInferenceResultGeomList(
|
||||
@Parameter(description = "분석결과 id", example = "1") @PathVariable Long id,
|
||||
@Parameter(description = "분석결과 id", example = "53") @PathVariable Long id,
|
||||
@Parameter(description = "기준년도 분류", example = "land") @RequestParam(required = false)
|
||||
String targetClass,
|
||||
@Parameter(description = "비교년도 분류", example = "waste") @RequestParam(required = false)
|
||||
|
||||
@@ -58,7 +58,6 @@ public class InferenceResultDto {
|
||||
|
||||
private Long id;
|
||||
private String analTitle;
|
||||
private String analMapSheet;
|
||||
private Long detectingCnt;
|
||||
@JsonFormatDttm private ZonedDateTime analStrtDttm;
|
||||
@JsonFormatDttm private ZonedDateTime analEndDttm;
|
||||
@@ -71,7 +70,6 @@ public class InferenceResultDto {
|
||||
public AnalResList(
|
||||
Long id,
|
||||
String analTitle,
|
||||
String analMapSheet,
|
||||
Long detectingCnt,
|
||||
ZonedDateTime analStrtDttm,
|
||||
ZonedDateTime analEndDttm,
|
||||
@@ -82,7 +80,6 @@ public class InferenceResultDto {
|
||||
String gukyuinUsed) {
|
||||
this.id = id;
|
||||
this.analTitle = analTitle;
|
||||
this.analMapSheet = analMapSheet;
|
||||
this.detectingCnt = detectingCnt;
|
||||
this.analStrtDttm = analStrtDttm;
|
||||
this.analEndDttm = analEndDttm;
|
||||
@@ -103,7 +100,6 @@ public class InferenceResultDto {
|
||||
private String modelInfo;
|
||||
private Integer targetYyyy;
|
||||
private Integer compareYyyy;
|
||||
private String analMapSheet;
|
||||
@JsonFormatDttm private ZonedDateTime analStrtDttm;
|
||||
@JsonFormatDttm private ZonedDateTime analEndDttm;
|
||||
private Long analSec;
|
||||
@@ -120,7 +116,6 @@ public class InferenceResultDto {
|
||||
String modelInfo,
|
||||
Integer targetYyyy,
|
||||
Integer compareYyyy,
|
||||
String analMapSheet,
|
||||
ZonedDateTime analStrtDttm,
|
||||
ZonedDateTime analEndDttm,
|
||||
Long analSec,
|
||||
@@ -135,7 +130,6 @@ public class InferenceResultDto {
|
||||
this.modelInfo = modelInfo;
|
||||
this.targetYyyy = targetYyyy;
|
||||
this.compareYyyy = compareYyyy;
|
||||
this.analMapSheet = analMapSheet;
|
||||
this.analStrtDttm = analStrtDttm;
|
||||
this.analEndDttm = analEndDttm;
|
||||
this.analSec = analSec;
|
||||
|
||||
Reference in New Issue
Block a user