EmbryoMark.cs 1002 B

1234567891011121314151617181920212223242526272829
  1. using CommunityToolkit.Mvvm.ComponentModel;
  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.balance
  8. {
  9. public class EmbryoMark : ObservableObject
  10. {
  11. public int id { get; set; }
  12. public int parentId { get; set; }
  13. public int wellSn { get; set; }
  14. public int markId { get; set; }
  15. public string markName { get; set; }
  16. public string markKey { get; set; }
  17. public string markPictureTime { get; set; }
  18. public string createTime { get; set; }
  19. public List<EmbryoMark> children { get; set; }
  20. public string pictureUrl { get; set; }
  21. public int developTime { get; set; }
  22. public int child { get; set; }
  23. public string markType { get; set; }
  24. public double score { get; set; }
  25. public int pictureLayer { get; set; }
  26. public int orderNum { get; set; }
  27. }
  28. }