PositionEntity.cs 892 B

1234567891011121314151617181920212223242526272829303132
  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.Result
  8. {
  9. public class PositionEntity : ObservableObject
  10. {
  11. public int houseSn { get; set; }
  12. public int layerNum { get; set; }
  13. public string positionType { get; set; }
  14. public string tlSn { get; set; }
  15. public int verticalMotorPosition { get; set; }
  16. public int verticalMotorSpacePulse { get; set; }
  17. public int wellSn { get; set; }
  18. private int _focusStartingPoint;
  19. public int focusStartingPoint { get => _focusStartingPoint; set => SetProperty(ref _focusStartingPoint, value); }
  20. public bool IsUpdate { get; set; } = false;
  21. public long EmbryoId { get; set; }
  22. }
  23. }