|
|
|
@ -31,11 +31,12 @@ class EntityClient(Base):
|
|
|
|
|
contact_phone = Column(String(50), comment='联系人电话') # 联系人
|
|
|
|
|
total_run_time = Column(Integer, comment='总运行时长') # 总运行时长
|
|
|
|
|
temperature_control_swich = Column(Integer, comment='温控开关', default=0)
|
|
|
|
|
temperature1_control_swich = Column(Integer, comment='温控开关', default=0)
|
|
|
|
|
light_control_swich = Column(Integer, comment='照明灯控制开关', default=0)
|
|
|
|
|
fan_control_swich = Column(Integer, comment='风扇控制开关', default=0)
|
|
|
|
|
temperature_set_value = Column(
|
|
|
|
|
Float, comment='温度设定值', default=0.0) # 温度设定控温值
|
|
|
|
|
temperature1_set_value = Column(
|
|
|
|
|
Float, comment='温度1设定值', default=0.0) # 温度设定控温值
|
|
|
|
|
temperature_max_value = Column(
|
|
|
|
|
Float, comment='温度上限值', default=0.0) # 温度预警上限
|
|
|
|
|
temperature_min_value = Column(
|
|
|
|
|