You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.Helper;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkMOC
- {
- public partial class LocalMaterail : NotifyBase
- {
- /// <summary>
- /// 物料ID
- /// </summary>
- public string MaterialID { get { return _materialID; } set { _materialID = value; OnPropertyChanged(); } }
- private string _materialID;
-
- /// <summary>
- /// 物料本地名称
- /// </summary>
- public string MaterialName { get { return _materialName; } set { _materialName = value; OnPropertyChanged(); } }
- private string _materialName;
-
- /// <summary>
- /// 物料位置
- /// </summary>
- public int MaterialPosition { get { return _materialPosition; } set { _materialPosition = value; OnPropertyChanged(); } }
- private int _materialPosition;
-
- /// <summary>
- /// 物料重量
- /// </summary>
- public string MaterialWeight { get { return _materialWeight; } set { _materialWeight = value; OnPropertyChanged(); } }
- private string _materialWeight;
-
- }
-
- public partial class LocalRecipe : NotifyBase
- {
- /// <summary>
- /// 物料重量
- /// </summary>
- public string RecipeID { get { return _recipeID; } set { _recipeID = value; OnPropertyChanged(); } }
- private string _recipeID;
-
- /// <summary>
- /// 配方名称
- /// </summary>
- public string RecipeName { get { return _recipeName; } set { _recipeName = value; OnPropertyChanged(); } }
- private string _recipeName;
-
- /// <summary>
- /// 原料集合
- /// </summary>
- public ObservableCollection<LocalMaterail> localMaterails { get; set; } = new ObservableCollection<LocalMaterail>();
- }
- }
|