DishRecordEntity.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 DishRecordEntity : ObservableObject
  10. {
  11. public int num { get; set; }
  12. public string stateString { get; set; } = "结束培养";
  13. public string fayuTime { get; set; }
  14. public string tlName { get; set; }
  15. public string caseId { get; set; }
  16. public string createTime { get; set; }
  17. public int developTime { get; set; }
  18. public int embryoCount { get; set; }
  19. public string endTime { get; set; }
  20. public string fertilizationType { get; set; }
  21. public long fertilizationTypeId { get; set; }
  22. public int deleted { get; set; }
  23. public int freezing { get; set; }
  24. public int houseSn { get; set; }
  25. public string husband { get; set; }
  26. public string husbandBirth { get; set; }
  27. public long id { get; set; }
  28. public int invalid { get; set; }
  29. public string note { get; set; }
  30. public string startTime { get; set; }
  31. public int state { get; set; }
  32. public string tlSn { get; set; }
  33. public int transplant { get; set; }
  34. public int vip { get; set; }
  35. public string wife { get; set; }
  36. public string wifeBirth { get; set; }
  37. public string cycle { get; set; }
  38. public string createTimeString { get; set; }
  39. public string startTimeString { get; set; }
  40. public string endTimeString { get; set; }
  41. private bool isMouseOver;
  42. public bool IsMouseOver
  43. {
  44. get => isMouseOver;
  45. set => SetProperty(ref isMouseOver, value);
  46. }
  47. private bool _IsCheck;
  48. public bool IsCheck
  49. {
  50. get => _IsCheck;
  51. set => SetProperty(ref _IsCheck, value);
  52. }
  53. }
  54. }