using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 补充目标板时输入条码实体类 /// public class InputBarcode : INotifyPropertyChanged { /// /// 属性变更事件 /// public event PropertyChangedEventHandler PropertyChanged; /// /// 目标板位 /// private string _lattice_num; public string lattice_num { get { return _lattice_num; } set { _lattice_num = value; if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(nameof(lattice_num))); } } } /// /// 目标板码 /// private string _targetplate_barcode; public string targetplate_barcode { get { return _targetplate_barcode; } set { _targetplate_barcode = value; if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(nameof(_targetplate_barcode))); } } } } }