25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System.Collections.ObjectModel;
-
- namespace BPASmartClient.FoodStationTest.Model
- {
- public class LocalPar
- {
- /// <summary>
- /// 本地模拟配方列表。
- /// </summary>
- public ObservableCollection<RecipeModel> Recipes { get; set; } = new ObservableCollection<RecipeModel>();
-
- /// <summary>
- /// 配方完成数目。
- /// </summary>
- public int RecipeDosingCompleNum { get; set; } = 0;
-
- /// <summary>
- /// 味魔方数量,每个项目应该固定的。
- /// </summary>
- public int RawMaterialDeviceNum { get; } = 6;
- /// <summary>
- /// 海科PLC的IP地址。
- /// </summary>
- public string HK_PLC_IP { get; }
- }
- }
|