using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 测量记录扩展 /// [SugarTable("YB_nResultExt", TableDescription = "测量记录扩展", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_nResultExt { /// /// 主键,记录ID /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// 阻抗值,八电极时为身体阻抗 /// [SugarColumn(ColumnDescription = "阻抗值", ColumnDataType = "decimal(18,2)")] public decimal Imp { get; set; } /// /// 左手阻抗 /// [SugarColumn(ColumnDescription = "左手阻抗", ColumnDataType = "decimal(18,2)")] public System.Decimal LeftArmImp { get; set; } /// /// 右手阻抗 /// [SugarColumn(ColumnDescription = "右手阻抗", ColumnDataType = "decimal(18,2)")] public System.Decimal RightArmImp { get; set; } /// /// 左脚阻抗 /// [SugarColumn(ColumnDescription = "左脚阻抗", ColumnDataType = "decimal(18,2)")] public System.Decimal LeftLegImp { get; set; } /// /// 右脚阻抗 /// [SugarColumn(ColumnDescription = "右脚阻抗", ColumnDataType = "decimal(18,2)")] public System.Decimal RightLegImp { get; set; } } }