using BPA.Helper;
using BPASmartClient.Model;
using System.Collections.ObjectModel;
using System.Threading;
namespace BPASmartClient.Academy
{
///
/// 配方模块
///
public class RecipeModel : NotifyBase
{
[Newtonsoft.Json.JsonIgnore]
public bool IsEnable { get { return _mIsEnable; } set { _mIsEnable = value; OnPropertyChanged(); } }
private bool _mIsEnable = true;
///
/// 序号
///
public int SerialNum { get { return _mSerialNum; } set { _mSerialNum = value; OnPropertyChanged(); } }
private int _mSerialNum;
///
/// 配方名称
///
public string RecipeName { get { return _mRecipeName; } set { _mRecipeName = value; OnPropertyChanged(); } }
private string _mRecipeName;
///
/// 配方编码
///
public string RecipCode { get { return _mRecipCode; } set { _mRecipCode = value; OnPropertyChanged(); } }
private string _mRecipCode;
[Newtonsoft.Json.JsonIgnore]
public string RecipStatus { get { return _mRecipStatus; } set { _mRecipStatus = value; OnPropertyChanged(); } }
private string _mRecipStatus;
///
/// 原料集合
///
public ObservableCollection RawMaterials { get; set; } = new ObservableCollection();
}
}