29 lines
678 B
C#
29 lines
678 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Senparc.NeuChar.ApiHandlers;
|
|
using Tnb.WarehouseMgr.Entities.Dto.Outputs;
|
|
|
|
namespace Tnb.WarehouseMgr
|
|
{
|
|
/// <summary>
|
|
/// Wms设备接口提供程序服务类
|
|
/// </summary>
|
|
|
|
public class DeviceProviderService : BaseWareHouseService
|
|
{
|
|
/// <summary>
|
|
/// 创建任务链
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
public async Task<Result> CreateTaskChain()
|
|
{
|
|
return await Task.FromResult<Result>(null);
|
|
}
|
|
}
|
|
}
|