using System; using System.Collections.Generic; namespace Shentun.WebPeis.Models; public partial class Diagnosis { public Guid DiagnosisId { get; set; } /// /// 名称 /// public string DiagnosisName { get; set; } = null!; /// /// 项目类别 /// public Guid ItemTypeId { get; set; } /// /// 建议名称 /// public string SuggestionName { get; set; } = null!; /// /// 是疾病 /// public char IsIll { get; set; } public char ForSexId { get; set; } public short DiagnosisLevelId { get; set; } public string? SimpleCode { get; set; } public int DisplayOrder { get; set; } public string? ConcurrencyStamp { get; set; } public DateTime CreationTime { get; set; } public Guid CreatorId { get; set; } public DateTime LastModificationTime { get; set; } public Guid LastModifierId { get; set; } public virtual ItemType ItemType { get; set; } = null!; }