You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
547 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Shentun.WebPeis.Models;
  4. public partial class DiseaseRiskNormalLevel
  5. {
  6. public short DiseaseRiskNormalLevelId { get; set; }
  7. public string DiseaseRiskNormalLevelName { get; set; } = null!;
  8. public string SimpleCode { get; set; } = null!;
  9. public int DisplayOrder { get; set; }
  10. public DateTime CreationTime { get; set; }
  11. public Guid CreatorId { get; set; }
  12. public DateTime LastModificationTime { get; set; }
  13. public Guid LastModifierId { get; set; }
  14. }