namespace Service.Execute.Model.Tbox { public class BatteryInfo { public string? BatteryNo { get; set; } /// /// 电池类型 /// public int? BatteryType { get; set; } /// /// 电池包型号 /// public int? BatteryPackageModel { get; set; } public decimal? Soe { get; set; } public decimal? Soc { get; set; } public decimal? Soh { get; set; } } }