국유인 어제완료된 라벨전송, 전송완료된 리스트 기능 추가

This commit is contained in:
2026-01-30 17:32:39 +09:00
parent 5ff72f927c
commit 21f922a5f4
10 changed files with 226 additions and 33 deletions

View File

@@ -1,6 +1,7 @@
package com.kamco.cd.kamcoback.gukyuin.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import java.time.ZonedDateTime;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Getter;
@@ -200,4 +201,19 @@ public class ChngDetectMastDto {
private String uid;
private String chnDtctMstId;
}
@Schema(name = "LabelSendDto", description = "라벨링 전송한 목록")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class LabelSendDto {
private String chnDtctObjtId;
private String labelerId;
private ZonedDateTime labelerWorkDttm;
private String reviewerId;
private ZonedDateTime reviewerWorkDttm;
private ZonedDateTime labelSendDttm;
}
}

View File

@@ -60,4 +60,13 @@ public class GukYuinDto {
private String uid;
private String applyStatus;
}
@Getter
@Setter
@AllArgsConstructor
public static class GeomUidDto {
private Long geoUid;
private String resultUid;
}
}