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;
| }
|
|