namespace Service.Swap.Dto; public class SingleBatInfo { /// /// 电池序列号 /// public string bn { get; set; } /// /// 充电架 ID 按电池架的编号 A1,A2… /// public string sd { get; set; } /// /// 所在充电机序号 从 1 开始递增 /// public int cno { get; set; } /// /// 是否在充电 0:未知 1:正在充电 2:未电池 /// public int hc { get; set; } /// /// 电接头连接状态 0:未知 1:已经连接 2:未连接 /// public int el { get; set; } /// /// 剩余能量 单位 0.1 kwh /// public float soe { get; set; } /// /// 当前 SOC 0-100 单位 0.1 ,没有充电填 0 /// public float soc { get; set; } /// /// 当前 SOH 0-100 单位 0.1 ,没有充电填 0 /// public float soh { get; set; } /// /// 最低单体电压 单位 0.01V /// public float lsv { get; set; } /// /// 最高单体电压 单位 0.01V /// public float hsv { get; set; } /// /// 最低单体温度 单位 0.1℃ /// public float lst { get; set; } /// /// 最高单体温度 单位 0.1℃ /// public float hst { get; set; } /// /// 单体电池号 从 1 开始递增 /// public int sl { get; set; } /// /// 单体电压 每一节电芯的单体电压 单位 0.1V ,如果没有该节电芯的数据,填65535.0 无效值 /// public float sv { get; set; } /// /// 单体温度 每一节电芯的单体温度 单位 0.1℃ ,如果没有该节电芯的数据,填65535.0 无效值 /// public float st { get; set; } /// /// 更新时间 格式 ”yyyy-MM-dd HH:mm:ss ” /// public DateTime bt { get; set; } }