using SqlSugar;
namespace Entity.DbModel.Station
{
///
///电价模型详情
///
[SugarTable("elec_price_model_version_detail")]
public partial class ElecPriceModelVersionDetail : BaseModel
{
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 int 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; }
}
}