81 lines
2.8 KiB
C#
81 lines
2.8 KiB
C#
using SqlSugar;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 体重标准
|
|
/// </summary>
|
|
[SugarTable("YB_WeightStand", TableDescription = "体重标准", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_WeightStand
|
|
{
|
|
private System.Int32 _Id;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(IsIdentity = true)]
|
|
public System.Int32 Id { get { return this._Id; } set { this._Id = value; } }
|
|
|
|
private System.Int32 _Month;
|
|
/// <summary>
|
|
/// 月龄
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "月龄")]
|
|
public System.Int32 Month { get { return this._Month; } set { this._Month = value; } }
|
|
|
|
/// <summary>
|
|
/// 性别,1-男,2-女
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "性别,1-男,2-女")]
|
|
public GenderType Sex { get; set; }
|
|
|
|
private System.Decimal _f3sd;
|
|
/// <summary>
|
|
/// -3SD
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "-3SD", ColumnDataType = "decimal(5,1)")]
|
|
public System.Decimal f3sd { get { return this._f3sd; } set { this._f3sd = value; } }
|
|
|
|
private System.Decimal _f2sd;
|
|
/// <summary>
|
|
/// -2SD
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "-2SD", ColumnDataType = "decimal(5, 1)")]
|
|
public System.Decimal f2sd { get { return this._f2sd; } set { this._f2sd = value; } }
|
|
|
|
private System.Decimal _f1sd;
|
|
/// <summary>
|
|
/// -1SD
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "-1SD", ColumnDataType = "decimal(5,1)")]
|
|
public System.Decimal f1sd { get { return this._f1sd; } set { this._f1sd = value; } }
|
|
|
|
private System.Decimal _median;
|
|
/// <summary>
|
|
/// 中位数
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "中位数", ColumnDataType = "decimal(5,1)")]
|
|
public System.Decimal median { get { return this._median; } set { this._median = value; } }
|
|
|
|
private System.Decimal _z1sd;
|
|
/// <summary>
|
|
/// +1SD
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "+1SD", ColumnDataType = "decimal(5,1)")]
|
|
public System.Decimal z1sd { get { return this._z1sd; } set { this._z1sd = value; } }
|
|
|
|
private System.Decimal _z2sd;
|
|
/// <summary>
|
|
/// +2SD
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "+2SD", ColumnDataType = "decimal(5,1)")]
|
|
public System.Decimal z2sd { get { return this._z2sd; } set { this._z2sd = value; } }
|
|
|
|
private System.Decimal _z3sd;
|
|
/// <summary>
|
|
/// +3SD
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "+3SD", ColumnDataType = "decimal(5,1)")]
|
|
public System.Decimal z3sd { get { return this._z3sd; } set { this._z3sd = value; } }
|
|
}
|
|
}
|