25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.Helper;
- using System.Collections.ObjectModel;
-
- namespace BPASmartClient.FoodStationTest.Model
- {
-
- /// <summary>
- /// 远程配方数据。
- /// </summary>
- public class RemoteRecipeData : NotifyBase
- {
- /// <summary>
- /// 配方名称
- /// </summary>
- public string RecipeName { get { return _mRecipeName; } set { _mRecipeName = value; OnPropertyChanged(); } }
- private string _mRecipeName;
-
- /// <summary>
- /// 配方ID
- /// </summary>
- public string RecipeCode { get { return _mRecipeCode; } set { _mRecipeCode = value; OnPropertyChanged(); } }
- private string _mRecipeCode;
-
- /// <summary>
- /// 托盘编号
- /// </summary>
- public int TrayCode { get { return _mTrayCode; } set { _mTrayCode = value; OnPropertyChanged(); } }
- private int _mTrayCode;
-
- /// <summary>
- /// 原料数据
- /// </summary>
- public ObservableCollection<RemoteRecipeRawMaterial> RawMaterial { get; set; } = new ObservableCollection<RemoteRecipeRawMaterial>();
- }
- }
|