Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- using BPASmartClient.JXJFoodSmallStation.Model.Siemens;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.Model
- {
- public class GVL_SmallStation
- {
- /// <summary>
- /// 配方数据
- /// </summary>
- public ObservableCollection<RemoteRecipeData> RemoteRecipes = new ObservableCollection<RemoteRecipeData>();
- /// <summary>
- /// 配方队列
- /// </summary>
- public ConcurrentQueue<long> RecipeQueue = new ConcurrentQueue<long>();
-
- /// <summary>
- /// 往输送带下发配方完成
- /// </summary>
- public bool IssueRecipeFinish { get; set; } = false;
-
- public bool IsAllow { get; set; } = false;
-
- public bool IsAllowOut { set; get; } = false;
- /// <summary>
- /// 当前料仓的位置
- /// </summary>
- public int StockInIsWork { get; set; } = 0;
- /// <summary>
- /// 单个配方执行完成标志
- /// </summary>
- public bool RecipeFinish { get; set; } = false;
-
- /// <summary>
- /// 记录AGV进站送货的指令顺序
- /// </summary>
- public int AgvDeliveryPosition { get; set; }= 0;
- /// <summary>
- /// 记录AGV进站取货的指令顺序
- /// </summary>
- public int AgvPickUpPosition { get; set; } = 0;
- }
- }
|