using System; using System.Collections.Generic; namespace Shentun.WebPeis.Models; public partial class DiseaseRiskNormalLevel { public short DiseaseRiskNormalLevelId { get; set; } public string DiseaseRiskNormalLevelName { get; set; } = null!; public string SimpleCode { get; set; } = null!; public int DisplayOrder { get; set; } public DateTime CreationTime { get; set; } public Guid CreatorId { get; set; } public DateTime LastModificationTime { get; set; } public Guid LastModifierId { get; set; } }