ReportMarkData.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.Entity.Mark
  7. {
  8. public class ReportMarkData
  9. {
  10. public string createTime { get; set; }
  11. public int deleted { get; set; }
  12. public int embryoCount { get; set; }
  13. public string endTime { get; set; }
  14. public string fertilizationType { get; set; }
  15. public long fertilizationTypeId { get; set; }
  16. public int freezing { get; set; }
  17. public string husband { get; set; }
  18. public string husbandBirth { get; set; }
  19. public long id { get; set; }
  20. public int invalid { get; set; }
  21. public string startTime { get; set; }
  22. public int state { get; set; }
  23. public int transplant { get; set; }
  24. public string wife { get; set; }
  25. public string wifeBirth { get; set; }
  26. public List<EmbryoMarkInfo> freezingEmbryos { get; set; } = new List<EmbryoMarkInfo>();
  27. public List<EmbryoMarkInfo> transplantEmbryos { get; set; } = new List<EmbryoMarkInfo>();
  28. }
  29. }