using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_DTO; using WIDESEAWCS_Model.Models; namespace WIDESEA_IStoragIntegrationServices { public interface IMESService : IDependency { /// /// 涂装工单信息 /// /// /// WebResponseContent pushWorkOrderInfo(object json); /// /// 预绑定工单 /// WebResponseContent prebind(object json); /// /// 车身过点请求 /// WebResponseContent PassPoint(RequestTaskDto json); /// /// 总装工单信息 /// WebResponseContent pushOrderInfo(object json); /// /// BDC请求焊装特征信息 /// /// RFID /// VIN号 /// 站台请求点位 /// 滑橇号 /// WebResponseContent issuedCharacter(string rfidPrint, string stationNo,string palletCdoe); /// /// 车身绑定工单 焊-涂、涂-总工单绑定 /// WebResponseContent bindWorkOrder(string stationNo, string rfid); /// /// BDC请求车辆特征信息 /// /// RFID /// 站台请求点位 /// WebResponseContent getCharacteristic(RequestTaskDto json); /// /// 工单/订单排撤 /// /// /// WebResponseContent removeWorkOrderInfo(object jsonData); /// /// MES拉动锁车 /// /// /// WebResponseContent pullLock(object jsondata); WebResponseContent syncOrderFeature(object json); } }