EmbryoMarkInfo.cs 877 B

1234567891011121314151617181920212223242526
  1. using ivf_tl_Entity.Entity.balance;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity.Mark
  8. {
  9. public class EmbryoMarkInfo
  10. {
  11. public string blastocystLevel { get; set; }
  12. public long embryoCultureRecordId { get; set; }
  13. public int houseSn { get; set; }
  14. public long id { get; set; }
  15. public string imageUrl { get; set; }
  16. public string level { get; set; }
  17. public decimal score { get; set; }
  18. public string startTime { get; set; }
  19. public int state { get; set; }
  20. public string stateTime { get; set; }
  21. public string tlSn { get; set; }
  22. public int wellSn { get; set; }
  23. public List<EmbryoMark> embryoMark { get; set; } = new List<EmbryoMark>();
  24. }
  25. }