EmbryoMarkResponse.cs 999 B

1234567891011121314151617181920212223242526272829303132
  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.Response
  7. {
  8. public class EmbryoMarkResponse
  9. {
  10. public string tlSn { get; set; }
  11. public long embryoCultureRecordId { get; set; }
  12. public long embryoId { get; set; }
  13. public int houseSn { get; set; }
  14. public string markKey { get; set; }
  15. public long model { get; set; }
  16. //public long pictureUuid { get; set; }
  17. public int developTime { get; set; }
  18. public int layer { get; set; }
  19. public long rootId { get; set; }
  20. public List<LeafNode> leafNode { get; set; } = new List<LeafNode>();
  21. }
  22. public class LeafNode
  23. {
  24. public int child { get; set; }
  25. public long id { get; set; }
  26. public string markKey { get; set; }
  27. public string markName { get; set; }
  28. public long parentId { get; set; }
  29. }
  30. }