File Management API Upload ALL Success

This commit is contained in:
DanielLee
2025-12-12 18:52:51 +09:00
parent 11444579e3
commit 8110887088
17 changed files with 368 additions and 103 deletions

View File

@@ -28,10 +28,10 @@ public class MapSheetMngFileEntity {
@NotNull
@Column(name = "map_sheet_num", nullable = false)
private Integer mapSheetNum;
private String mapSheetNum;
@Column(name = "ref_map_sheet_num")
private Integer refMapSheetNum;
private String refMapSheetNum;
@Size(max = 255)
@Column(name = "file_path")
@@ -45,9 +45,9 @@ public class MapSheetMngFileEntity {
@Column(name = "file_ext", length = 20)
private String fileExt;
@Column(name = "mng_uid")
private Long mngUid;
// @Column(name = "mng_uid")
// private Long mngUid;
@Column(name = "hst_uid")
private Long hstUid;
// @Column(name = "hst_uid")
// private Long hstUid;
}

View File

@@ -51,7 +51,7 @@ public class MapSheetMngHstEntity extends CommonDateEntity {
private String mapSheetPath;
@Column(name = "ref_map_sheet_num")
private Long refMapSheetNum;
private String refMapSheetNum;
@Column(name = "created_uid")
private Long createdUid;