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 System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Security.RightsManagement;
- using System.Text;
- using System.Threading.Tasks;
- using BPASmartClient.MorkCL.Model.DataInfo;
- using BPASmartClient.MorkCL.Model.Func;
- using BPASmartClient.MorkCL.Model.Recipe;
-
- namespace BPASmartClient.MorkCL.Model
- {
- public class ControlData : RawMaterial
- {
- private EDeviceType deviceType;
- private EDishType dishType;
- private string remark;
-
- /// <summary>
- /// 选择设备类型
- /// </summary>
- public EDeviceType DeviceType { get => deviceType; set { deviceType = value; OnPropertyChanged(); } }
-
- /// <summary>
- /// 菜品类型
- /// </summary>
- public EDishType DishType { get => dishType; set { dishType = value; OnPropertyChanged(); } }
-
- /// <summary>
- /// 功能配方
- /// </summary>
- public ConcurrentQueue<FuncModel> ControlFuncs { get; set; } = new ConcurrentQueue<FuncModel>();
-
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark { get => remark; set { remark = value; OnPropertyChanged(); } }
-
- }
-
-
- public class FuncModel
- {
- private EFunc _eFunc;
-
- public EFunc eFunc
- {
- get { return _eFunc; }
- set { _eFunc = value;/* funcPars = InitData.FunParInit[value]?.ToList(); */}
- }
-
-
- public List<FuncPar> funcPars { get; set; } = new List<FuncPar>();
- }
-
- }
|