|
|
@ -9,30 +9,22 @@ import java.util.List; |
|
|
|
@Schema(description = "当前设备") |
|
|
|
@Data |
|
|
|
public class DeviceState { |
|
|
|
@Schema(description = "虚拟模式,true为虚拟") |
|
|
|
private boolean virtual = false; |
|
|
|
|
|
|
|
@Schema(description = "初始化状态,true初始化完毕") |
|
|
|
private boolean initComplete = false; |
|
|
|
|
|
|
|
@Schema(description = "自检状态,true自检完毕") |
|
|
|
private boolean selfTest = false; |
|
|
|
|
|
|
|
@Schema(description = "是否是急停状态,true为急停") |
|
|
|
private boolean emergencyStop = false; |
|
|
|
|
|
|
|
@Schema(description = "门状态") |
|
|
|
private final DoorState door = new DoorState(); |
|
|
|
|
|
|
|
@Schema(description = "龙门架机械臂状态") |
|
|
|
private final GantryArmState gantryArm = new GantryArmState(); |
|
|
|
|
|
|
|
@Schema(description = "加液模块属性") |
|
|
|
private final SolutionModuleState solutionModule = new SolutionModuleState(); |
|
|
|
|
|
|
|
@Schema(description = "加热模块属性") |
|
|
|
private final List<HeatModuleState> heatModule = new ArrayList<>(); |
|
|
|
|
|
|
|
@Schema(description = "托盘") |
|
|
|
private final List<TrayState> tray = new ArrayList<>(); |
|
|
|
@Schema(description = "虚拟模式,true为虚拟") |
|
|
|
private boolean virtual = false; |
|
|
|
@Schema(description = "初始化状态,true初始化完毕") |
|
|
|
private boolean initComplete = false; |
|
|
|
@Schema(description = "自检状态,true自检完毕") |
|
|
|
private boolean selfTest = false; |
|
|
|
@Schema(description = "是否是急停状态,true为急停") |
|
|
|
private boolean emergencyStop = false; |
|
|
|
} |