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