using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Net.Http; using System.Text; using System.Web; using System.Web.Http; using System.Collections.Concurrent; using Newtonsoft.Json.Linq; using System.Threading; using SlMesDbIterface; using PLMTEST; using System.Net; using System.Net.Http.Headers; using System.IO; using ExternalDataSync; /////http://127.0.0.1:9981/api/IOrder/InsertOrder /// /// /// namespace WebApi { /// /// /// [RoutePrefix("api/IOrder")] public class IOrderController : ApiController { readonly string headUrl = "IOrder/"; /// /// 生产工单下发 /// /// /// [HttpPost] public HttpResponseMessage MisFunction([FromBody] JObject jobj) { return new HttpResponseMessage { Content = new StringContent(AnalysisMsg.MisFunction(headUrl + System.Reflection.MethodBase.GetCurrentMethod().Name, jobj.ToString()), Encoding.GetEncoding("UTF-8"), "application/json") }; } } }