영상데이터 관리 > 오류 처리 내역 수정

This commit is contained in:
Moon
2025-12-17 13:38:17 +09:00
parent 3efb5302df
commit 06da4af942
4 changed files with 84 additions and 43 deletions

View File

@@ -87,4 +87,21 @@ public class MapSheetMngHstEntity extends CommonDateEntity {
@Column(name = "total_size_bytes")
private Long totalSizeBytes;
@Size(max = 100)
@Column(name = "sync_tif_file_name", length = 100)
private String syncTifFileName;
@Size(max = 100)
@Column(name = "sync_tfw_file_name", length = 100)
private String syncTfwFileName;
@Size(max = 100)
@Column(name = "sync_check_tif_file_name", length = 100)
private String syncCheckTifFileName;
@Size(max = 100)
@Column(name = "sync_check_tfw_file_name", length = 100)
private String syncCheckTfwFileName;
}