|
|
|
@ -39,7 +39,8 @@ public class SwapOrderDto
|
|
|
|
|
public string VehicleNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ExporterHeader(DisplayName = "车牌号", IsBold = true)]
|
|
|
|
|
// [ExporterHeader(DisplayName = "车牌号", IsBold = true)]
|
|
|
|
|
[ExporterHeader(IsIgnore = true)]
|
|
|
|
|
public string VehicleNoCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -47,7 +48,8 @@ public class SwapOrderDto
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "所属公司", IsBold = true)]
|
|
|
|
|
//[ExporterHeader(DisplayName = "所属公司", IsBold = true)]
|
|
|
|
|
[ExporterHeader(IsIgnore = true)]
|
|
|
|
|
public string? Company {get;set;}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -180,7 +182,7 @@ public class SwapOrderDto
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return UpBatterySoc.HasValue ? $"{UpBatterySoc.Value.ToString("0")}%" : null;
|
|
|
|
|
return UpBatterySoc.HasValue ? $"{UpBatterySoc.Value.ToString("0")}" : null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -223,7 +225,7 @@ public class SwapOrderDto
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return DownBatterySoc.HasValue ? $"{DownBatterySoc.Value.ToString("0")}%" : null;
|
|
|
|
|
return DownBatterySoc.HasValue ? $"{DownBatterySoc.Value.ToString("0")}" : null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|