31 lines
761 B
C#
31 lines
761 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.Inputs;
|
|
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> ChainStatusReporting(ChainStatusReportingUpInput input)
|
|
{
|
|
|
|
return await Task.FromResult<Result>(null);
|
|
}
|
|
}
|
|
}
|