You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
425 B
29 lines
425 B
package com.yvan.logisticsEnv;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* 环境启动参数
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class EnvStartParam {
|
|
|
|
public String clientId;
|
|
|
|
/**
|
|
* 是否虚拟仿真环境
|
|
*/
|
|
private boolean isVirtual;
|
|
|
|
/**
|
|
* 时间倍速(仿真环境专用)
|
|
*/
|
|
private Integer timeRate;
|
|
|
|
/**
|
|
* Env环境配置
|
|
*/
|
|
private EnvPayload envPayload;
|
|
}
|
|
|