using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HybirdFrameworkEntity { public class CMD201 { /// /// 预留 /// public ushort Reserved1 { get; set; } /// /// 预留 /// public ushort Reserved2 { get; set; } /// /// 充电口号 /// public byte ChargNum { get; set; } /// /// 充电卡号 32 /// public string ChargID { get; set; } /// /// 内部索引号 /// public int IndexNum { get; set; } /// /// 7、8、9 字段有效标志 /// 0- 无效 /// 1- 有效 /// public byte ValidMark { get; set; } /// /// 充电优惠前金额 /// public uint InitialCost { get; set; } /// /// 充电折扣金额 /// public uint DiscountCost { get; set; } /// /// 充电实扣金额 /// public uint NetCost { get; set; } /// /// 用户剩余金额 /// public uint Balance { get; set; } /// /// 充电实扣电费 /// public uint NetElectricCost { get; set; } /// /// 充电实扣服务费 /// public uint NetServiceCost { get; set; } } }