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.

131 lines
3.2 KiB

using System.ComponentModel.DataAnnotations;
using HybirdFrameworkCore.Entity;
using SqlSugar;
namespace Entity.Api.Req
{
///<summary>
///查询充电订单
///</summary>
5 months ago
public class QueryChargeOrderReq: QueryPageModel
{
5 months ago
/// <summary>
/// Desc:id
/// Default:
/// Nullable:False
/// </summary>
public int Id { get; set; }
/// <summary>
/// Desc:订单编号
/// Default:
/// Nullable:True
/// </summary>
public string? Sn { get; set; }
/// <summary>
/// Desc:电池编号
/// Default:
/// Nullable:True
/// </summary>
public string? BatteryNo { get; set; }
/// <summary>
/// Desc:启动报文状态;0-初始化1-启动成功
/// Default:0
/// Nullable:True
/// </summary>
public int? CmdStatus { get; set; }
5 months ago
/// <summary>
/// Desc:充电机编号
/// Default:
/// Nullable:True
/// </summary>
public string? ChargerNo { get; set; }
/// <summary>
/// Desc:充电枪编号
/// Default:
/// Nullable:True
/// </summary>
public string? ChargerGunNo { get; set; }
/// <summary>
/// 0站内充电 1站外充电
/// </summary>
public int? ChargeMode { get; set; }
5 months ago
/// <summary>
/// 1站控启动 2本地启动
/// </summary>
public int? StartMode { get; set; }
5 months ago
/// <summary>
/// Desc:充电开始时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? StartTime { get; set; }
/// <summary>
/// Desc:充电结束时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime? EndTime { get; set; }
/// <summary>
/// Desc:充电时长
/// Default:
/// Nullable:True
/// </summary>
public int? ChargeTimeCount { get; set; }
5 months ago
/// <summary>
/// Desc:停止原因;0满电自动停止1-人工停止
/// Default:0
/// Nullable:True
/// </summary>
public int? StopReason { get; set; }
5 months ago
/// <summary>
/// Desc:电价版本号
/// Default:
/// Nullable:True
/// </summary>
public string? ElecPriceModelVersion { get; set; }
/// <summary>
/// Desc:换电订单编号
/// Default:
/// Nullable:True
/// </summary>
public string? SwapOrderSn { get; set; }
/// <summary>
/// Desc:上传云平台状态;0-未上传1-已上传
/// Default:0
/// Nullable:True
/// </summary>
public int? CloudReportStatus { get; set; }
5 months ago
/// <summary>
/// 云平台充电订单
/// </summary>
public string? CloudChargeOrder { get; set; }
5 months ago
/// <summary>
/// Desc:是否可以上传云平台
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName = "can_upload")]
public int? CanUpload { get; set; }
5 months ago
}
}