|
|
|
@ -16,13 +16,6 @@ public class SwapOrderDto
|
|
|
|
|
[ExporterHeader(DisplayName = "站号", IsBold = true)]
|
|
|
|
|
public string StationNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:订单编号
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "订单编号", IsBold = true)]
|
|
|
|
|
public string Sn { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:车牌号
|
|
|
|
@ -121,6 +114,98 @@ public class SwapOrderDto
|
|
|
|
|
public string FailReason { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:换电类型:;1自动换电;2手动换电
|
|
|
|
|
/// Default:0
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(IsIgnore = true)]
|
|
|
|
|
public int? SwapWay { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包编码
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "电池编号(存)", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public string? DownBatteryNo { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包soc
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "soc(存)", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? DownBatterySoc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:放电池仓位号 亏电包仓号
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "放电池仓位号", IsBold = true)]
|
|
|
|
|
public int? DownBatteryBinNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:取电池仓位号 满电包仓号
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "取电池仓位号", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public int? UpBatteryBinNo { 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>
|
|
|
|
|
/// 满电包电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "电池电量(取)", IsBold = true)]
|
|
|
|
|
public string? UpBatteryElectricQuantity { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 亏电包电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "电池电量(存)", IsBold = true)]
|
|
|
|
|
public string? DownBatteryElectricQuantity { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电量差
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "电池差值", IsBold = true)]
|
|
|
|
|
public string ElectricQuantity { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:订单编号
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "订单编号", IsBold = true)]
|
|
|
|
|
public string Sn { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:上传云平台状态;0-未上传;1-已上传
|
|
|
|
|
/// Default:0
|
|
|
|
@ -140,6 +225,10 @@ public class SwapOrderDto
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// [ExporterHeader(DisplayName = "上传云平台状态", IsBold = true)]
|
|
|
|
|
[ExporterHeader(IsIgnore = true)] public int? CloudReportStatus { get; set; }
|
|
|
|
|
|
|
|
|
@ -170,25 +259,6 @@ public class SwapOrderDto
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:换电类型:;1自动换电;2手动换电
|
|
|
|
|
/// Default:0
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(IsIgnore = true)]
|
|
|
|
|
public int? SwapWay { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包soc
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "亏电包soc", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? DownBatterySoc { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包真实soc
|
|
|
|
|
/// Default:
|
|
|
|
@ -198,6 +268,9 @@ public class SwapOrderDto
|
|
|
|
|
|
|
|
|
|
public decimal? DownBatteryRealSoc { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包上次换电结算时soc
|
|
|
|
|
/// Default:
|
|
|
|
@ -207,76 +280,22 @@ public class SwapOrderDto
|
|
|
|
|
|
|
|
|
|
public decimal? DownBatteryLastSoc { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:亏电包编码
|
|
|
|
|
/// Desc:满电包真实soc
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "亏电包编码", IsBold = true)]
|
|
|
|
|
[ExporterHeader(DisplayName = "满电包真实soc", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public decimal? UpBatteryRealSoc { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:放电池仓位号 亏电包仓号
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "放电池仓位号", IsBold = true)]
|
|
|
|
|
public int? DownBatteryBinNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:取电池仓位号 满电包仓号
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "取电池仓位号", IsBold = true)]
|
|
|
|
|
|
|
|
|
|
public int? UpBatteryBinNo { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "电量", IsBold = true)]
|
|
|
|
|
public string ElectricQuantity { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 亏电包电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "Down Battery Electric Quantity", IsBold = true)]
|
|
|
|
|
public string? DownBatteryElectricQuantity { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 满电包电量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ExporterHeader(DisplayName = "Up Battery Electric Quantity", IsBold = true)]
|
|
|
|
|
public string? UpBatteryElectricQuantity { get; set; }
|
|
|
|
|
}
|