2021与蓝度共同重构项目,服务端
LHN
2022-10-17 dfe3eb2327962d2cace6ca85acd1dea629033886
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.sandu.ximon.admin.vo;
 
import lombok.Data;
 
/**
 * 远程升级   升级进度
 */
@Data
public class RemoteUpgradeProgress {
 
    /**
     * 当前进度
     */
    private int currentProgress = 0;
 
    /**
     * 总进度
     */
    private int totalProgress = 0;
}