终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

RecipeStatus.cs 723 B

hace 1 año
hace 1 año
12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using BPA.Helper;
  7. namespace BPASmartClient.SmallBatchingSystem
  8. {
  9. public class RecipeStatus : NotifyBase
  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. }