pulg
9 天以前 91fc6f65c712505f0b13e45d66e917e2645ae1c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
        }
 
 
    }
}