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 { /// /// 涂装工单信息 /// /// /// WebResponseContent pushWorkOrderInfo(object json); /// /// 预绑定工单 /// WebResponseContent prebind(object json); /// /// 车身过点请求 /// WebResponseContent PassPoint(string stationCode, string rfid); /// /// 总装工单信息 /// WebResponseContent pushOrderInfo(object json); /// /// BDC请求焊装特征信息 /// /// RFID /// VIN号 /// 站台请求点位 /// WebResponseContent issuedCharacter(string rfidPrint, string vin, string stationNo); /// /// 车身绑定工单(焊装直通涂装) /// WebResponseContent bindWorkOrder(string stationNo, string rfid); /// /// BDC请求车辆特征信息 /// /// RFID /// 站台请求点位 /// WebResponseContent getCharacteristic(string stationNo, string rfidPrint); /// /// 工单/订单排撤 /// /// /// WebResponseContent removeWorkOrderInfo(object jsonData); /// /// MES拉动锁车 /// /// /// WebResponseContent pullLock(object jsondata); WebResponseContent syncOrderFeature(object json); } }