using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Module.EMeter.ModbusTcp { /// /// 电表连接的基础信息 /// public class CmnElecMeterBaseInfo { #region 基础字段 ///// ///// 主控制柜 ///// //public static EMeterModbus415Tool EMT01 = new EMeterModbus415Tool("172.0.50.101", 502, 5, "M001"); ///// ///// 水冷柜电表 ///// //public static EMeterModbus415Tool EWC01 = new EMeterModbus415Tool("172.0.50.103", 502, 7, "M002"); /// /// 1号充电机电表 /// public static EMeterModbus527Tool EBC01 = new EMeterModbus527Tool("172.0.50.100", 405, 1, "1号相变总表"); /// /// 2号充电机电表 /// haiy public static EMeterModbus527Tool EBC02 = new EMeterModbus527Tool("172.0.50.100", 405, 5, "蓄水池水泵"); /// /// 3号充电机电表 /// public static EMeterModbus527Tool EBC03 = new EMeterModbus527Tool("172.0.50.100", 405, 6, "2号换电站11号充电机"); /// public static EMeterModbus527Tool EBC04 = new EMeterModbus527Tool("172.0.50.100", 405, 7, "2号换电站配电总柜"); /// /// 2号充电机电表 /// haiy public static EMeterModbus527Tool EBC05 = new EMeterModbus527Tool("172.0.50.100", 405, 9, "换电站场地照明及监控"); /// /// 3号充电机电表 /// public static EMeterModbus527Tool EBC06 = new EMeterModbus527Tool("172.0.50.100", 406, 1, "3#箱变"); /// public static EMeterModbus527Tool EBC07 = new EMeterModbus527Tool("172.0.50.100", 407, 1, "4#箱变"); #endregion 基础字段 } }