You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
494 B
23 lines
494 B
namespace Service.Api.Resp
|
|
{
|
|
public class BatteryInfo
|
|
{
|
|
public string? BatteryNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电池类型
|
|
/// </summary>
|
|
public int? BatteryType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电池包型号
|
|
/// </summary>
|
|
public int? BatteryPackageModel { get; set; }
|
|
|
|
public float? Soe { get; set; }
|
|
|
|
public float? Soc { get; set; }
|
|
|
|
public float? Soh { get; set; }
|
|
}
|
|
} |