StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_PatientWaterSwall...

80 lines
1.8 KiB
C#
Raw 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.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 患者洼田饮水试验评分
/// </summary>
public class T_Service_PatientWaterSwallow
{
/// <summary>
///
/// </summary>
[SugarColumn(IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
public string GUID { get; set; } = Guid.NewGuid().ToString();
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// 1级
/// </summary>
public int L1Score { get; set; }
/// <summary>
/// 2级
/// </summary>
public int L2Score { get; set; }
/// <summary>
/// 3级
/// </summary>
public int L3Score { get; set; }
/// <summary>
/// 4级
/// </summary>
public int L4Score { get; set; }
/// <summary>
/// 5级
/// </summary>
public int L5Score { get; set; }
/// <summary>
/// 总分
/// </summary>
public int TotalScore { get; set; }
/// <summary>
/// 评分时间
/// </summary>
public DateTime ScoreTime { get; set; } = DateTime.Now;
/// <summary>
/// 创建人
/// </summary>
public long CreateUser { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; } = DateTime.Now;
/// <summary>
/// 是否删除
/// </summary>
public int DeleteFlag { get; set; }
}
}