StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_ApoplexyProposal.cs

76 lines
1.8 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;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 卒中指导治疗及建议
/// </summary>
public class T_Service_ApoplexyProposal
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
public string GUID { get; set; }
/// <summary>
///
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// 指导及建议
/// 1. 生活方式指导 2. 饮食指导 3 .运动指导 4. 劳物干预及进一步完西区学检查 分号拼接,且分号开头,分号结尾
/// </summary>
public string Proposal { get; set; }
/// <summary>
/// 患者去向
/// </summary>
public string Destination { get; set; }
/// <summary>
/// 住院治疗
/// </summary>
public string IsHospitalized { get; set; }
/// <summary>
/// 当前筛查人
/// </summary>
public string ScreenName { get; set; }
/// <summary>
/// 填写状态0 未填写 1 已填写
/// </summary>
public string FillinStatus { get; set; } = "0";
/// <summary>
///
/// </summary>
public long CreateID { get; set; }
/// <summary>
///
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
///
/// </summary>
public int DeleteFlag { get; set; }
}
}