|
|
|
@ -46,7 +46,8 @@ public class SwapOrderDto
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "车辆进场时间", IsBold = true,Width = 30, Format = "yyyy-MM-dd HH:mm:ss", AutoCenterColumn = true)]
|
|
|
|
|
[ExporterHeader(DisplayName = "车辆进场时间", IsBold = true, Width = 30, Format = "yyyy-MM-dd HH:mm:ss",
|
|
|
|
|
AutoCenterColumn = true)]
|
|
|
|
|
public DateTime? VehicleEnterTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -54,7 +55,8 @@ public class SwapOrderDto
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "车辆离场时间", IsBold = true,Width = 30, Format = "yyyy-MM-dd HH:mm:ss", AutoCenterColumn = true)]
|
|
|
|
|
[ExporterHeader(DisplayName = "车辆离场时间", IsBold = true, Width = 30, Format = "yyyy-MM-dd HH:mm:ss",
|
|
|
|
|
AutoCenterColumn = true)]
|
|
|
|
|
public DateTime? VehicleLeaveTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -62,7 +64,8 @@ public class SwapOrderDto
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "换电开始时间", IsBold = true,Width = 30, Format = "yyyy-MM-dd HH:mm:ss", AutoCenterColumn = true)]
|
|
|
|
|
[ExporterHeader(DisplayName = "换电开始时间", IsBold = true, Width = 30, Format = "yyyy-MM-dd HH:mm:ss",
|
|
|
|
|
AutoCenterColumn = true)]
|
|
|
|
|
public DateTime? SwapBeginTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -131,9 +134,7 @@ public class SwapOrderDto
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// [ExporterHeader(DisplayName = "上传云平台状态", IsBold = true)]
|
|
|
|
|
[ExporterHeader(IsIgnore = true)]
|
|
|
|
|
|
|
|
|
|
public int? CloudReportStatus { get; set; }
|
|
|
|
|
[ExporterHeader(IsIgnore = true)] public int? CloudReportStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -160,6 +161,7 @@ public class SwapOrderDto
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:换电类型:;1自动换电;2手动换电
|
|
|
|
|
/// Default:0
|
|
|
|
@ -169,7 +171,6 @@ public class SwapOrderDto
|
|
|
|
|
public int? SwapWay { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包soc
|
|
|
|
|
/// Default:
|
|
|
|
@ -178,6 +179,7 @@ public class SwapOrderDto
|
|
|
|
|
[ExporterHeader(DisplayName = "亏电包soc", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? DownBatterySoc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包真实soc
|
|
|
|
|
/// Default:
|
|
|
|
@ -195,4 +197,40 @@ public class SwapOrderDto
|
|
|
|
|
[ExporterHeader(DisplayName = "亏电包上次换电结算时soc", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? DownBatteryLastSoc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包编码
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "亏电包编码", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public string? DownBatteryNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:满电包编码
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "满电包编码", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public string? UpBatteryNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:满电包soc
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "满电包soc", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? UpBatterySoc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:满电包真实soc
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "满电包真实soc", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? UpBatteryRealSoc { get; set; }
|
|
|
|
|
}
|