using SqlSugar;
namespace Entity.Dto.Resp
{
public class ExchangeStationDayRunResultResp
{
///
/// 主键ID
///
public int Id { get; set; }
///
/// 平均充电时长
///
public string AvgChgTime { get; set; }
///
/// 平均换电时长
///
public string AvgRepTime { get; set; }
///
/// 换电日期
///
public string SwapDate { get; set; }
///
/// 首次换电时间
///
public string FristSwapTime { get; set; }
///
/// 结束换电时间
///
public string StopTime { get; set; }
///
/// 运行开始时间
///
public string RunStartTime { get; set; }
///
/// 运行结束时间
///
public string RunEndTime { get; set; }
///
/// 充电总次数
///
public int ChgCount { get; set; }
///
/// 运营状态
///
public int State { get; set; }
///
/// 换电总次数
///
public int ToltalSwapCount { get; set; }
///
/// 换电总时长
///
public double ToltalSwapAllTime { get; set; }
///
/// 站运行总时长
///
public double ToltalTimeCount { get; set; }
///
/// Desc:创建人
/// Default:
/// Nullable:True
///
public string? CreatedBy { get; set; }
///
/// Desc:创建时间
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
public string? CreatedTime { get; set; }
///
/// Desc:更新人
/// Default:
/// Nullable:True
///
public string? UpdatedBy { get; set; }
///
/// Desc:更新时间
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///