using PlcSiemens.Core.Extension;
using ServiceCenter.Extensions;
using ServiceCenter.SqlSugars;
using System.ComponentModel;
using WCS.Core;
using WCS.Entity;
using WCS.Entity.Protocol.Station;
using WCS.WorkEngineering.Worlds;
using DeviceFlags = WCS.WorkEngineering.Extensions.DeviceFlags;
using TaskStatus = WCS.Entity.TaskStatus;
namespace WCS.WorkEngineering.Systems
{
///
/// 桁架码垛区补空托盘任务生成
///
// [BelongTo(typeof(SortingPalletizingWorld))]
[Description("码垛区补空托盘任务生成")]
public class PalletizCreateEmptyTray : DeviceSystem>
{
protected override bool ParallelDo => true;
public override void Do(Device obj)
{
}
public override bool Select(Device dev)
{
return dev.Code == nameof(PalletizCreateEmptyTray);
}
}
}