using System; namespace HDL_ON.Entity { /// /// 金茂逆变器 /// public class InverterJinmao { public InverterJinmao() { } } public enum InverterJinmao_AttrEnum { /// /// 发电功率 /// pv_power, /// /// 今日发电量 /// pv_electricity_today, /// /// 本月发电量 /// pv_electricity_month, /// /// 总发电量 /// pv_electricity, /// /// 光伏运行状态 /// system_status, /// /// 储能状态 /// ess_status, /// /// 储能充电功率 /// ess_charge_power, /// /// 储能放电功率 /// ess_discharg_power, /// /// 当前电池容量 /// battery_soc, /// /// 用电功率 /// load_active_power, /// /// 今日用电量 /// load_electricity_today, /// /// 本月用电量 /// load_electricity_month, /// /// 总用电量 /// load_electricity, /// /// 节约标准煤 /// coal, /// /// //CO2减排 /// co2, /// /// 等效植树量 /// trees, } /// /// 光伏运行状态 /// public enum InverterJinmao_Attr_SystemStatusEnum { /// /// 运行: /// run, /// /// 故障: /// fault, /// /// 待机: /// standby } /// /// 储能状态 /// public enum InverterJinmao_Attr_EssStatusEnum { /// /// 充电: /// charge, /// /// 放电: /// discharge, /// /// 停机: /// shutdown, /// /// 故障: /// fault } }