53 lines
1.2 KiB
C#
53 lines
1.2 KiB
C#
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
|
|
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
namespace WebApi
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[RoutePrefix("api/IOrder")]
|
|
public class IOrderController : ApiController
|
|
{
|
|
readonly string headUrl = "IOrder/";
|
|
|
|
/// <summary>
|
|
/// 生产工单下发
|
|
/// </summary>
|
|
/// <param name="jobj"></param>
|
|
/// <returns></returns>
|
|
[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")
|
|
};
|
|
}
|
|
}
|
|
}
|