648540858
2023-10-07 c084d6c98af1ef4d36a61adc719df5db76589428
src/main/java/com/genersoft/iot/vmp/gb28181/bean/SyncStatus.java
old mode 100644 new mode 100755
@@ -1,12 +1,21 @@
package com.genersoft.iot.vmp.gb28181.bean;
import io.swagger.v3.oas.annotations.media.Schema;
/**
 * 摄像机同步状态
 * @author lin
 */
@Schema(description = "摄像机同步状态")
public class SyncStatus {
    @Schema(description = "总数")
    private int total;
    @Schema(description = "当前更新多少")
    private int current;
    @Schema(description = "错误描述")
    private String errorMsg;
    @Schema(description = "是否同步中")
    private boolean syncIng;
    public int getTotal() {
        return total;
@@ -31,4 +40,12 @@
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
    public boolean isSyncIng() {
        return syncIng;
    }
    public void setSyncIng(boolean syncIng) {
        this.syncIng = syncIng;
    }
}