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);
|
}
|
}
|