lss
2025-05-30 38eff4fc0100131b180ffa872009b502629743f5
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
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using NaTeWebApi.Services;
using Newtonsoft.Json;
using NaTeWebApi.Controllers;
using System.Web.Http;
using static NaTeWebApi.Controllers.AMSModel;
using NaTeWebApi.Models;
 
namespace NaTeWebApi.Controllers
{
    //[Route("Industry/AMSApi")]
    [RoutePrefix("AMSApi")]
    public class AMSApiController : ApiController
    {
        /// <summary>
        /// 农夫淳安--富勒WMS工单信息下发接口
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        [Route("~/xxptmstrget")]
        public SimpleResultModel xxptmstrget(xxptmstrgetmodel model)
        {
            SimpleResultModel result = new SimpleResultModel();
            LogHelper.Info("xxptmstrget Request:" + JsonConvert.SerializeObject(model), "ThirdSystemLog");
            result = ApiHelper.xxptmstrget(model);
            LogHelper.Info("xxptmstrget Response:" + JsonConvert.SerializeObject(result), "ThirdSystemLog");
            return result;
        }
    }
}