24 lines
719 B
C#
24 lines
719 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 儿童体质结果详情
|
|
/// </summary>
|
|
[SugarTable("YB_ChildPhysiqueResultDetail", TableDescription = "儿童体质结果详情", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_ChildPhysiqueResultDetail
|
|
{
|
|
/// <summary>
|
|
/// 记录ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "记录ID", IndexGroupNameList = new string[] { "index_resultid" })]
|
|
public Guid ResultId { get; set; }
|
|
/// <summary>
|
|
/// 问答ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "问答ID")]
|
|
public Guid QId { get; set; }
|
|
}
|
|
}
|