using System;
namespace HDL_ON.Entity
{
///
/// 金茂热水器
///
public class WaterHeaterJinmao
{
public WaterHeaterJinmao()
{
}
}
public enum WaterHeaterJinmao_AttrEnum
{
///
/// 开关 WR string on/off
///
on_off,
///
/// 热水温度 °C R float %d
///
temp,
///
/// 热水温度设置 °C WR float %d 35-60
///
set_temp,
///
/// 热水模式设置 WR string 节能:economic 速热:quick_heat
///
mode,
///
/// 免费热水状态 R boolean true/false
///
mode_free,
///
/// 热水流量 L/min R float %d
///
flow,
///
/// 热回收热水量 t R float %d
///
recycl_volume,
///
/// 总热水量 t R float %d
///
volume,
///
/// 热回收节电量 kwh R float %d
///
energy_electricity,
///
/// CO2减排量 R float %d
///
co2,
///
/// 等效植树量 R float %d
///
trees,
}
///
/// 热水模式设置
///
public enum WaterHeaterJinmao_Attr_ModeEnum
{
economic,//节能
quick_heat,//速热
}
}