30 lines
763 B
C#
30 lines
763 B
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_nBodyMeasure", TableDescription = "八电极标准数据", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_nBodyMeasure
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 等级标准
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType ="nvarchar(max)",ColumnDescription ="等级标准")]
|
|
public string LevelJson { get; set; }
|
|
}
|
|
}
|