파일싱크 수정

This commit is contained in:
Harry M. You
2025-12-05 16:42:44 +09:00
parent fba9a14035
commit 21cc84f86a
5 changed files with 29 additions and 16 deletions

View File

@@ -83,6 +83,18 @@ public class ImageryDto {
private Long hstUid;
}
@Schema(name = "SyncReturn", description = "영상파일싱크 수행 후 리턴")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class SyncReturn {
private String flag;
private int syncCnt;
private int tfwErrCnt;
private int tifErrCnt;
}
}