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