You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
796 B

using DotNetty.Common.Utilities;
using Entity.DbModel.Station;
namespace Service.Charger.Client;
public class PlcConst
{
public static string ChargeEqpCode = "565002033910Q6F00001";
public static byte[] StartChar =new byte[] { 0x68 };
// public static string ChargerSn = "";
public static readonly AttributeKey<string> ChargerSn = AttributeKey<string>.ValueOf("charger_sn");
public static readonly AttributeKey<string> EqmTypeNo = AttributeKey<string>.ValueOf("eqm_type_no");
public static readonly AttributeKey<string> EqmCode = AttributeKey<string>.ValueOf("eqm_code");
public static readonly AttributeKey<string> DestAddr = AttributeKey<string>.ValueOf("dest_addr");
public static List<EquipAlarmDefine> EquipAlarmDefines = new List<EquipAlarmDefine>();
}