영상데이터관리 목록 조회 수정
This commit is contained in:
@@ -69,15 +69,29 @@ public class MapSheetMngDto {
|
||||
private int mngYyyy;
|
||||
private String mngState;
|
||||
private String syncState;
|
||||
private String syncCheckState;
|
||||
private String syncDataCheckState;
|
||||
private Long syncTotCnt;
|
||||
private Long syncStateDoneCnt;
|
||||
private Long syncCheckStateDoneCnt;
|
||||
private Long syncNotFileCnt;
|
||||
private Long syncTypeErrorCnt;
|
||||
private Long syncSizeErrorCnt;
|
||||
private Long syncDataCheckDoneCnt;
|
||||
private Long syncNotPaireCnt;
|
||||
private Long syncDuplicateCnt;
|
||||
private Long syncFaultCnt;
|
||||
@JsonFormatDttm private ZonedDateTime rgstStrtDttm;
|
||||
@JsonFormatDttm private ZonedDateTime rgstEndDttm;
|
||||
|
||||
public double getSyncStateDoneRate() {
|
||||
if (this.syncTotCnt == null || this.syncTotCnt == 0) {
|
||||
return 0.0;
|
||||
}
|
||||
return (double) this.syncStateDoneCnt / this.syncTotCnt * 100.0;
|
||||
}
|
||||
|
||||
public double getSyncDataCheckDoneRate() {
|
||||
if (this.syncTotCnt == null || this.syncTotCnt == 0) {
|
||||
return 0.0;
|
||||
}
|
||||
return (double) this.syncDataCheckDoneCnt / this.syncTotCnt * 100.0;
|
||||
}
|
||||
}
|
||||
|
||||
@Schema(name = "ErrorSearchReq", description = "영상관리 오류데이터 검색 요청")
|
||||
|
||||
Reference in New Issue
Block a user