You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.7 KiB
70 lines
1.7 KiB
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Entity.DbModel.Station
|
|
{
|
|
///<summary>
|
|
///选包规则表
|
|
///</summary>
|
|
[SugarTable("select_battery_rule")]
|
|
public partial class SelectBatteryRule : BaseModel
|
|
{
|
|
public SelectBatteryRule(){
|
|
|
|
|
|
}
|
|
/// <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="code")]
|
|
public string Code {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:规则名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="name")]
|
|
public string Name {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:是否启用;1-启用;
|
|
/// Default:1
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="enabled")]
|
|
public int? Enabled {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:限制值
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="limit_value")]
|
|
public decimal? LimitValue {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="remart")]
|
|
public string Remart {get;set;}
|
|
|
|
|
|
|
|
}
|
|
}
|