终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

26 rader
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. }