using SqlSugar;
namespace Entity.DbModel.Station
{
///
///电价模型详情
///
[SugarTable("elec_price_model_version_detail")]
public partial class ElecPriceModelVersionDetail
{
public ElecPriceModelVersionDetail()
{
}
///
/// Desc:id
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
public int Id { get; set; }
///
/// Desc:版本号
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "version")]
public string Version { get; set; }
///
/// Desc:开始时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "start_hour")]
public int StartHour { get; set; }
///
/// Desc:开始时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "start_minute")]
public int StartMinute { get; set; }
///
/// Desc:结束时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "end_hour")]
public int EndHour { get; set; }
///
/// Desc:结束时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "end_minute")]
public int EndMinute { get; set; }
///
/// Desc:价格;以分为单位存储
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "price")]
public int Price { get; set; }
///
/// Desc:尖峰平谷类型;1-尖;2-峰;3-平;4-谷
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "type")]
public int Type { get; set; }
///
/// Desc:所需电池数量
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "battery_count")]
public int BatteryCount { get; set; }
///
/// Desc:创建人
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "created_by")]
public string CreatedBy { get; set; }
///
/// Desc:创建时间
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
///
/// Desc:更新人
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "updated_by")]
public string UpdatedBy { get; set; }
///
/// Desc:更新时间
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
[SugarColumn(ColumnName = "updated_time")]
public DateTime? UpdatedTime { get; set; }
}
}