终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
672 B

  1. using BPA.Helper;
  2. using System.Collections.ObjectModel;
  3. namespace BPASmartClient.DosingSystem
  4. {
  5. public class DevicePar : NotifyBase
  6. {
  7. /// <summary>
  8. /// 配料设备参数
  9. /// </summary>
  10. public ObservableCollection<DeviceParModel> deviceParModels { get; set; } = new ObservableCollection<DeviceParModel>();
  11. public ObservableCollection<OutletInfoModel> OutletInfoModels { get; set; } = new ObservableCollection<OutletInfoModel>();
  12. public BasePar BaseParModel { get { return _mBaseParModel; } set { _mBaseParModel = value; OnPropertyChanged(); } }
  13. private BasePar _mBaseParModel = new BasePar();
  14. }
  15. }