using HH.WCS.Mobox3.DSZSH.AppStart;
using HH.WCS.Mobox3.DSZSH.Services;
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Web.Http;
using static HH.WCS.Mobox3.DSZSH.Dtos.Request.WmsRequest;
using static HH.WCS.Mobox3.DSZSH.Dtos.Response.WmsResponse;
namespace HH.WCS.Mobox3.DSZSH.Controllers
{
///
/// 第三方调用的接口
///
[RoutePrefix("api")]
public class WMSController : ApiController {
///
/// 博实物料信息下发同步(MES)
///
///
///
[HttpPost]
//[Route("WMS/CgInfoSync")]
public WmsResult CgInfoSync(CgInfoSyncInfo model) {
return WmsService.CgInfoSync(model);
}
}
}