|
|
using System;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using SqlSugar;
|
|
|
|
|
|
namespace Entity.DbModel.Station
|
|
|
{
|
|
|
///<summary>
|
|
|
///仓位信息表
|
|
|
///</summary>
|
|
|
[SugarTable("bin_info")]
|
|
|
public partial class BinInfo
|
|
|
{
|
|
|
public BinInfo(){
|
|
|
|
|
|
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// Desc:id
|
|
|
/// Default:
|
|
|
/// Nullable:False
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
|
|
|
public int Id {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:仓位编号
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="no")]
|
|
|
public string No {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:仓位编码
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="code")]
|
|
|
public string Code {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:仓位名称
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="name")]
|
|
|
public string Name {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:电池编号
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="battery_no")]
|
|
|
public string BatteryNo {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:充电机编号
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="charger_no")]
|
|
|
public string ChargerNo {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:充电枪编号
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="charger_gun_no")]
|
|
|
public string ChargerGunNo {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:水冷编号
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="water_cool_no")]
|
|
|
public string WaterCoolNo {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:是否有电插头;0-无电插头;1-有电插头
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="elec_plugin_flag")]
|
|
|
public int? ElecPluginFlag {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:电插头状态;0-未知;1-已经连接;2-未连接
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="elec_plugin_status")]
|
|
|
public string ElecPluginStatus {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:是否有水插头;0-无水插头;1-有水插头
|
|
|
/// Default:
|
|
|
/// Nullable:False
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="water_plugin_flag")]
|
|
|
public string WaterPluginFlag {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:预约锁定;0-未锁定;1-锁定
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="amt_lock")]
|
|
|
public string AmtLock {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:soc
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="soc")]
|
|
|
public decimal? Soc {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:soe
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="soe")]
|
|
|
public decimal? Soe {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:soh
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="soh")]
|
|
|
public decimal? Soh {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:电池入仓顺序
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="battery_enter_seq")]
|
|
|
public int? BatteryEnterSeq {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:充电状态;0-未知;1-正在充电;2-无电池;3-禁用
|
|
|
/// Default:0
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="charge_status")]
|
|
|
public int? ChargeStatus {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:仓位状态;0-禁用;1-启用
|
|
|
/// Default:1
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="status")]
|
|
|
public int? Status {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:创建人
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="created_by")]
|
|
|
public string CreatedBy {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:创建时间
|
|
|
/// Default:CURRENT_TIMESTAMP
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="created_time")]
|
|
|
public DateTime? CreatedTime {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:更新人
|
|
|
/// Default:
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="updated_by")]
|
|
|
public string UpdatedBy {get;set;}
|
|
|
|
|
|
/// <summary>
|
|
|
/// Desc:更新时间
|
|
|
/// Default:CURRENT_TIMESTAMP
|
|
|
/// Nullable:True
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnName="updated_time")]
|
|
|
public DateTime? UpdatedTime {get;set;}
|
|
|
|
|
|
}
|
|
|
}
|