라벨링툴 목록 기준년도 asc,비교년도 asc 기준으로 sorting, 변화탐지 cog API 수정

This commit is contained in:
2026-01-20 18:35:45 +09:00
parent 6d423534f1
commit cc5b3f3096
5 changed files with 52 additions and 4 deletions

View File

@@ -35,6 +35,10 @@ public class TrainingDataLabelDto {
private String mapSheetNum;
private String mapIdNm;
private Long pnu;
private UUID stageUuid;
private Integer compareYyyy;
private Integer targetYyyy;
private Integer stage;
public LabelingListDto(
UUID assignmentUid,
@@ -43,7 +47,11 @@ public class TrainingDataLabelDto {
String workState,
String mapSheetNum,
String mapIdNm,
Long pnu) {
Long pnu,
UUID stageUuid,
Integer compareYyyy,
Integer targetYyyy,
Integer stage) {
this.assignmentUid = assignmentUid;
this.inferenceGeomUid = inferenceGeomUid;
this.workerUid = workerUid;
@@ -51,6 +59,10 @@ public class TrainingDataLabelDto {
this.mapSheetNum = mapSheetNum;
this.mapIdNm = mapIdNm;
this.pnu = pnu;
this.stageUuid = stageUuid;
this.compareYyyy = compareYyyy;
this.targetYyyy = targetYyyy;
this.stage = stage;
}
}

View File

@@ -35,6 +35,10 @@ public class TrainingDataReviewDto {
private String mapSheetNum;
private String mapIdNm;
private Long pnu;
private UUID stageUuid;
private Integer compareYyyy;
private Integer targetYyyy;
private Integer stage;
public ReviewListDto(
UUID operatorUid,
@@ -43,7 +47,11 @@ public class TrainingDataReviewDto {
String inspectState,
String mapSheetNum,
String mapIdNm,
Long pnu) {
Long pnu,
UUID stageUuid,
Integer compareYyyy,
Integer targetYyyy,
Integer stage) {
this.operatorUid = operatorUid;
this.inferenceGeomUid = inferenceGeomUid;
this.inspectorUid = inspectorUid;
@@ -51,6 +59,10 @@ public class TrainingDataReviewDto {
this.mapSheetNum = mapSheetNum;
this.mapIdNm = mapIdNm;
this.pnu = pnu;
this.stageUuid = stageUuid;
this.compareYyyy = compareYyyy;
this.targetYyyy = targetYyyy;
this.stage = stage;
}
}