|
|
@ -0,0 +1,30 @@ |
|
|
|
package com.iflytop.sgs.app.model.bo; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
/** |
|
|
|
* 传感器参数类 |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
public class Sensor { |
|
|
|
/*加热位1是否存在托盘*/ |
|
|
|
private boolean heater_tray_1_exist; |
|
|
|
/*加热位2是否存在托盘*/ |
|
|
|
private boolean heater_tray_2_exist; |
|
|
|
/*加热位3是否存在托盘*/ |
|
|
|
private boolean heater_tray_3_exist; |
|
|
|
/*加热位4是否存在托盘*/ |
|
|
|
private boolean heater_tray_4_exist; |
|
|
|
/*废液桶是否存在*/ |
|
|
|
private boolean waste_exist; |
|
|
|
/*稀硝酸桶低液位检测*/ |
|
|
|
private boolean thin_low_level; |
|
|
|
/*浓硝酸桶低液位检测*/ |
|
|
|
private boolean thick_low_level; |
|
|
|
/*废液桶高液位检测*/ |
|
|
|
private boolean waste_high_level; |
|
|
|
/*蒸馏水桶低液位检测*/ |
|
|
|
private boolean water_low_level; |
|
|
|
|
|
|
|
|
|
|
|
} |