using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.SmallBatchingSystem
{
public class PlcDataModel
{
public static bool[] TargetLocFeedback { get; set; } = new bool[16];
///
/// 到达目标位置
///
public static bool TargetLocComplete { get; set; }
///
/// 通道配料完成
///
public static bool BatchingCompleted { get; set; }
///
/// 配方配料完成
///
public static bool RecipeBatchingComplete { get; set; }
}
}