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