刘磊
2026-01-15 26f88473f470ab34f46d95642035a4e5f6b69847
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEA_IStoragIntegrationServices
{
    public interface IMESService : IDependency
    {
        /// <summary>
        /// 涂装工单信息
        /// </summary>
        /// <param name="json"></param>
        /// <returns></returns>
        WebResponseContent pushWorkOrderInfo(object json);
 
        /// <summary>
        /// 预绑定工单
        /// </summary>
        WebResponseContent prebind(object json);
 
        /// <summary>
        /// 车身过点请求
        /// </summary>
        WebResponseContent PassPoint(string stationCode, string rfid);
 
        /// <summary>
        /// 总装工单信息
        /// </summary>
        WebResponseContent pushOrderInfo(object json);
 
        /// <summary>
        ///  BDC请求焊装特征信息
        /// </summary>
        /// <param name="rfidPrint">RFID</param>
        /// <param name="vin">VIN号</param>
        /// <param name="stationNo">站台请求点位</param>
        /// <returns></returns>
        WebResponseContent issuedCharacter(string rfidPrint, string vin, string stationNo);
 
        /// <summary>
        /// 车身绑定工单(焊装直通涂装)
        /// </summary>
        WebResponseContent bindWorkOrder(string stationNo, string rfid);
 
        /// <summary>
        /// BDC请求车辆特征信息
        /// </summary>
        /// <param name="rfidPrint">RFID</param>
        /// <param name="stationNo">站台请求点位</param>
        /// <returns></returns>
        WebResponseContent getCharacteristic(string rfidPrint, string stationNo);
    }
}