using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using WIDESEA_Core.Utilities;
|
using WIDESEA_WCS.WCSClient;
|
|
namespace WIDESEA_WCS
|
{
|
public partial class LineInboundExecutor
|
{
|
/// <summary>
|
/// 输送线入库任务完成
|
/// </summary>
|
/// <param name="client"></param>
|
/// <returns></returns>
|
public static WebResponseContent LineInboundTaskCompleted(PLCClient client)
|
{
|
WebResponseContent responseContent = new WebResponseContent();
|
responseContent = TaskCompleted(client.PLCName, () =>
|
{
|
//任务完成逻辑编写
|
throw new Exception();
|
});
|
return responseContent;
|
}
|
}
|
}
|