using HH.WCS.QingXigongchang.dispatch;
|
using HH.WCS.QingXigongchang.process;
|
using HH.WCS.QingXigongchang.wms;
|
using System.Web.Http;
|
using static HH.WCS.QingXigongchang.api.ApiModel;
|
|
namespace HH.WCS.QingXigongchang.api
|
{
|
/// <summary>
|
/// mobox调用
|
/// </summary>
|
public class MoboxController : System.Web.Http.ApiController
|
{
|
|
[HttpPost]
|
public SimpleResult CompleteTask(MoboxTaskBase model) {
|
var result = new SimpleResult();
|
return result;
|
}
|
|
|
}
|
}
|