liurunyu
2024-11-08 04779efe2410fb0df1ff983b26384d56471b85cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dy.rtuMw.server.upgrade;
 
/**
 * @Author: liurunyu
 * @Date: 2024/11/4 14:14
 * @Description
 */
public class UpgradeUnitConfigVo {
 
    public Boolean showStartInfo ;
    public Boolean enable ;//模块是否启动
    public Integer failTryTimes ;//升级失败后,重新偿试升级次数,0表示不重新偿试升级
    public Integer ugMaxRtuSameTime ;//同时升级RTU最大个数
 
    public UpgradeUnitConfigVo(){
        this.enable = false ;
        this.failTryTimes = 0 ;
        this.failTryTimes = 1000000 ;
    }
}