|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace FryPot_DosingSystem.Model
- {
- internal class NewRecipeModel:ObservableObject
- {
- /// <summary>
- /// 配方唯一ID
- /// </summary>
- private string _recipeId;
- public string RecipeId { get { return _recipeId; }set { _recipeId = value; OnPropertyChanged(); } }
- /// <summary>
- /// 配方名称
- /// </summary>
- private string _recipeName;
- public string RecipeName { get { return _recipeName; } set { _recipeName = value;OnPropertyChanged(); } }
-
- /// <summary>
- /// 配方创建时间
- /// </summary>
- private string _dateTime;
- public string DataTime { get { return _dateTime; } set { _dateTime = value;OnPropertyChanged(); } }
-
- private string _updateTime;
- public string UpdateTime { get { return _updateTime; } set { _updateTime = value;OnPropertyChanged(); } }
- /// <summary>
- /// 工艺流程
- /// </summary>
- public FlowProcessManage FlowProcess { get { return _flowProcessManage; } set { _flowProcessManage = value;OnPropertyChanged(); } }
- private FlowProcessManage _flowProcessManage;
-
- /// <summary>
- /// 配方下发状况信息
- /// </summary>
- private string _recipeSetInfo;
- public string RecipeSetInfo { get { return _recipeSetInfo; } set { _recipeSetInfo = value; OnPropertyChanged(); } }
-
-
-
- public ObservableCollection<MaterialType> materialCollection { get; set; } = new ObservableCollection<MaterialType>();
- }
- }
|