|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Entity.DbModel.Station
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///换电站日运行统计结果
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("exchange_station_day_count_result")]
|
|
|
|
|
public class ExchangeStationDayRunResult
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 平均充电时长
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ave_chg_time")]
|
|
|
|
|
public string AvgChgTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 平均换电时长
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ave_rep_time")]
|
|
|
|
|
public string AvgRepTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "swap_date")]
|
|
|
|
|
public string SwapDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 首次换电时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "frist_swap_time")]
|
|
|
|
|
public string FristSwapTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束换电时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "stop_time")]
|
|
|
|
|
public string StopTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运行开始时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "run_start_time")]
|
|
|
|
|
public string RunStartTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运行结束时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "run_end_time")]
|
|
|
|
|
public string RunEndTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电总次数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "chg_count")]
|
|
|
|
|
public int ChgCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运营状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "state")]
|
|
|
|
|
public int State { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电总次数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "toltal_swap_count")]
|
|
|
|
|
public int ToltalSwapCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电总时长
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "toltal_swap_all_time")]
|
|
|
|
|
public float ToltalSwapAllTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 站运行总时长
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "toltal_time_count")]
|
|
|
|
|
public float ToltalTimeCount { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
|
|
|
public string CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "created_by")]
|
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "updated_by")]
|
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
|
|
|
public string UpdatedTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|