1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
    }
 
    public void setTotal(int total) {
        this.total = total;
    }
 
    public int getCurrent() {
        return current;
    }
 
    public void setCurrent(int current) {
        this.current = current;
    }
 
    public String getErrorMsg() {
        return errorMsg;
    }
 
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
 
    public boolean isSyncIng() {
        return syncIng;
    }
 
    public void setSyncIng(boolean syncIng) {
        this.syncIng = syncIng;
    }
}