using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
|
namespace WIDESEA_StoragIntegrationServices
|
{
|
/// <summary>
|
/// BDC请求焊装特征下发
|
/// 接口描述: 车身进入BDC时,BDC读取车身上的一维条码向MES请求焊装特征信息
|
/// </summary>
|
public partial class MESService
|
{
|
public WebResponseContent removeWorkOrderInfo(string jsonData)
|
{
|
WebResponseContent content = new WebResponseContent();
|
try
|
{
|
|
|
return content.OK();
|
}
|
catch (Exception ex)
|
{
|
|
return content.OK(ex.Message);
|
}
|
|
}
|
}
|
}
|