32 lines
613 B
C#
32 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Tnb.WarehouseMgr
|
|
{
|
|
/// <summary>
|
|
/// Wms设备接口提供程序服务类
|
|
/// </summary>
|
|
public class DeviceProviderService : BaseWareHouseService
|
|
{
|
|
[HttpPost,NonUnify]
|
|
public async Task<dynamic> pickupRequest(pickupRequest)
|
|
{
|
|
try
|
|
{
|
|
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
throw;
|
|
}
|
|
return ToApiResult();
|
|
}
|
|
|
|
}
|
|
}
|