终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

16 行
473 B

  1. using BPA.Helper;
  2. namespace BPASmartClient.DosingSystem
  3. {
  4. public class RecipeProcess : NotifyBase
  5. {
  6. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
  7. private string _mRawMaterialName;
  8. public int RawMaterialStatus { get { return _mRawMaterialStatus; } set { _mRawMaterialStatus = value; OnPropertyChanged(); } }
  9. private int _mRawMaterialStatus;
  10. }
  11. }