using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.DbModel.Station { /// ///电池运营模型详情 /// [SugarTable("battery_op_model_detail")] public partial class BatteryOpModelDetail : BaseModel { public BatteryOpModelDetail(){ } /// /// Desc:id /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int Id {get;set;} /// /// Desc:模型Id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="model_id")] public int? ModelId {get;set;} /// /// Desc:开始时间:06:00:00 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="start_time")] public string StartTime {get;set;} /// /// Desc:结束时间:06:00:01 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="end_time")] public string EndTime {get;set;} /// /// Desc:需要电池数量 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="battery_count")] public int? BatteryCount {get;set;} /// /// Desc:需要电池类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="battery_type")] public string BatteryType {get;set;} } }