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