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

26 lines
756 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. namespace BPASmartClient.SmallBatchingSystem
  8. {
  9. public class RecipeStatus : ObservableObject
  10. {
  11. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
  12. private string _mRawMaterialName;
  13. public bool IsChecked { get { return _mIsChecked; } set { _mIsChecked = value; OnPropertyChanged(); } }
  14. private bool _mIsChecked;
  15. public string Status { get { return _mStatus; } set { _mStatus = value; OnPropertyChanged(); } }
  16. private string _mStatus = "等待配料";
  17. }
  18. }