using DotNetty.Common.Utilities; namespace Service.Charger.Common; public static class ChargerConst { public static readonly AttributeKey ChargerSn = AttributeKey.ValueOf("charger_sn"); public static readonly AttributeKey EqmTypeNo = AttributeKey.ValueOf("eqm_type_no"); public static readonly AttributeKey EqmCode = AttributeKey.ValueOf("eqm_code"); public static readonly AttributeKey DestAddr = AttributeKey.ValueOf("dest_addr"); public static readonly string DateFormat = "yyMMddHHmmss"; public static readonly byte[] StartChar = { 0x68 /* ,0xEE*/ }; public static readonly string AuthCode = "szhckj01"; public static readonly byte[] BatteryBasicInfo2 = { 0x00, 0xF8, 0x02 }; public static readonly byte[] BatteryNo = { 0x00, 0xF8, 0x81 }; public static readonly byte[] BatteryBasicInfo = { 0x00, 0xF8, 0x82 }; } /// /// 充电状态。0:无效值;1:鉴权成功;2:鉴权失败;3:开始充电成功;4:开始充电失败;5:正在充电;6:停止充电成功;7:停止充电失败; /// public enum ChargingStatus { UnKnown, Authed, AuthFailed, StartChargingSuccess, StartChargingFailed, Charging, StopChargingSuccess, StopChargingFailed }