namespace Service.Api.Resp { public class BatteryInfo { public string? BatteryNo { get; set; } /// /// 电池类型 /// public int? BatteryType { get; set; } /// /// 电池包型号 /// public int? BatteryPackageModel { get; set; } public float? Soe { get; set; } public float? Soc { get; set; } public float? Soh { get; set; } } }