StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_JKJY.cs

44 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 健康教育表
/// </summary>
public class T_Service_Apoplexy_JKJY
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsIdentity = true)]
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
public string GUID { get; set; }
/// <summary>
/// 患者编号(GUID)
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 健康宣教 单选1.是 2.否
/// </summary>
public string JYEduYN { get; set; }
/// <summary>
/// 宣教方式 多选01.集体病区教育 02.一对一教育 99.其他 存储格式示例:;01;02;03;
/// </summary>
public string JYEduWays { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}