终端一体化运控平台
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.
 
 
 

30 lines
894 B

  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace FryPot_DosingSystem.Model
  9. {
  10. internal class FlowProcessManage:NotifyBase
  11. {
  12. public string RecipeName { get; set; }
  13. public float targetWeightOffset { get { return _targetWeightOffset; } set { _targetWeightOffset = value;OnPropertyChanged(); }}
  14. private float _targetWeightOffset;
  15. private ushort _stirTime;
  16. /// <summary>
  17. /// 秘制配方搅拌时间
  18. /// </summary>
  19. public ushort StirTime
  20. {
  21. get { return _stirTime; }
  22. set { _stirTime = value; OnPropertyChanged(); }
  23. }
  24. public ObservableCollection<FlowProcessModel> fpModels { get; set; } = new ObservableCollection<FlowProcessModel>();
  25. }
  26. }