using BPASmartClient.JXJFoodBigStation.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.JXJFoodBigStation.Model
{
public class GVL_BigStation
{
///
/// 往输送带下发配方完成
///
public bool IssueRecipeFinish { get; set; } = false;
///
/// 当前料仓的位置
///
public int StockInIsWork { get; set; } = 0;
///
/// 单个配方执行完成标志
///
public bool RecipeFinish { get; set; } = false;
///
/// 记录AGV进站送货的指令顺序
///
public int AgvDeliveryPosition { get; set; }
///
/// 记录AGV进站取货的指令顺序
///
public int AgvPickUpPosition { get; set; }
///
/// 配方配料的状态 0:无意义 ,1:plc允许下发配方 2:上位机下发配方 3:plc接收到配方(配料中) 4:配料完成
///
public int RecipeDosingStatus { get; set; }
///
/// 是否处于手动下发配方
///
public bool IsAllowManual { get; set; }
}
}