feat: add add_imagery_data_api_v2
This commit is contained in:
@@ -6,6 +6,7 @@ import com.kamco.cd.kamcoback.common.utils.enums.Enums;
|
||||
import com.kamco.cd.kamcoback.common.utils.interfaces.JsonFormatDttm;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.List;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
@@ -238,6 +239,7 @@ public class MapSheetMngDto {
|
||||
@Getter
|
||||
@Setter
|
||||
public static class SyncCheckStateReqUpdateDto {
|
||||
|
||||
private Long hstUid;
|
||||
private String filePath;
|
||||
private String syncCheckTfwFileName;
|
||||
@@ -304,4 +306,17 @@ public class MapSheetMngDto {
|
||||
private Long hstUid;
|
||||
private Long fileSize;
|
||||
}
|
||||
|
||||
@Schema(name = "ResisterYearList", description = "영상파일 등록을 위한 연도 list")
|
||||
@Getter
|
||||
public static class ResisterYearList {
|
||||
|
||||
private Integer currnet;
|
||||
private List<Integer> years;
|
||||
|
||||
public ResisterYearList(Integer currnet, List<Integer> years) {
|
||||
this.currnet = currnet;
|
||||
this.years = years;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user