using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using WIDESEA_Core.Extensions;
|
using WIDESEA_Core.Utilities;
|
using WIDESEA_Entity.DomainModels;
|
using WIDESEA_WCS.WCSClient;
|
|
namespace WIDESEA_WCS
|
{
|
public partial class StackerExecutor : SchedulerExecuteBase
|
{
|
/// <summary>
|
/// 堆垛机任务下发
|
/// </summary>
|
/// <param name="client"></param>
|
/// <returns></returns>
|
public static WebResponseContent SendStackerTask(PLCClient client)
|
{
|
WebResponseContent responseContent = new WebResponseContent();
|
responseContent = SendTask(client.PLCName, () =>
|
{
|
//任务下发逻辑编写
|
throw new Exception();
|
});
|
return responseContent;
|
}
|
}
|
}
|