package com.sandu.ximon.admin.vo; import lombok.Data; /** * 远程升级 升级进度 */ @Data public class RemoteUpgradeProgress { /** * 当前进度 */ private int currentProgress = 0; /** * 总进度 */ private int totalProgress = 0; }