55 lines
1.5 KiB
C#
55 lines
1.5 KiB
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace YBDevice.Entity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// BMI标准
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("YB_BmiStand", TableDescription = "BMI标准", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|||
|
|
public class YB_BmiStand
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 主键
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public Guid Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 月龄
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "月龄", ColumnDataType = "decimal(6,2)")]
|
|||
|
|
public decimal Month { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 性别,1-男,2-女
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "性别,1-男,2-女")]
|
|||
|
|
public GenderType Sex { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// -1SD
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "1SD", ColumnDataType = "decimal(4,1)")]
|
|||
|
|
public decimal f1sd { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 中位数
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "中位数", ColumnDataType = "decimal(4,1)")]
|
|||
|
|
public decimal median { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// +1SD
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "1SD", ColumnDataType = "decimal(4,1)")]
|
|||
|
|
public decimal z1sd { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// +2SD
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnDescription = "2SD", ColumnDataType = "decimal(4,1)")]
|
|||
|
|
public decimal z2sd { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|