刘磊
2025-11-11 6fed1f731b16c1820a43fc34130a70b21465e2bb
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
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);
            }
 
        }
    }
}