111
cjs
4 天以前 99004292e20a9e1efa4e3b11b8c319bfd796912c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Web.Http;
using static HH.WCS.Mobox3.NFLZ.api.ApiHelper;
using static HH.WCS.Mobox3.NFLZ.api.ApiModel;
using static HH.WCS.Mobox3.NFLZ.api.OtherModel;
 
namespace HH.WCS.Mobox3.NFLZ.api
{
    /// <summary>
    /// 第三方调用的接口
    /// </summary>
    //[RoutePrefix("api")]
    public class WmsController : System.Web.Http.ApiController
    {
      
        /// <summary>
        /// 创建入库单
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("Putaway_Order_In")]
        public SimpleResult Putaway_Order_In(Putaway_Order_In model) {
            return ApiHelper.Putaway_Order_In(model);
        }
    }
}