| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.HouseSetting
- {
- public partial class AutoFocusWellInfo : ObservableObject
- {
- public long id { get; set; }
- private int _wellSn;
- public int wellSn
- {
- get => _wellSn;
- set
- {
- SetProperty(ref _wellSn, value);
- }
- }
- private int _horizontalMotorPosition;
- public int horizontalMotorPosition
- {
- get => _horizontalMotorPosition;
- set => SetProperty(ref _horizontalMotorPosition, value);
- }
- private int _focusStartingPoint;
- public int focusStartingPoint
- {
- get => _focusStartingPoint;
- set => SetProperty(ref _focusStartingPoint, value);
- }
- private int _moveDownLayer;
- public int moveDownLayer
- {
- get => _moveDownLayer;
- set => SetProperty(ref _moveDownLayer, value);
- }
- private int _leftOffset;
- public int leftOffset
- {
- get => _leftOffset;
- set => SetProperty(ref _leftOffset, value);
- }
- private int _bottomOffset;
- public int bottomOffset
- {
- get => _bottomOffset;
- set => SetProperty(ref _bottomOffset, value);
- }
- [ObservableProperty]
- private int? newFocusStartingPoint = null;
- [ObservableProperty]
- private int? newMoveDownLayer = null;
- [ObservableProperty]
- private int? newLeftOffset = null;
- [ObservableProperty]
- private int? newBottomOffset = null;
- }
- }
|