123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MesAdaptor
- {
- public class SajectConnectTest : ISajetConnect
- {
- public bool SajetTranFinishFail(MesErrorCode errorCode) => true;
- public bool SajetTranFinishSuccess() => true;
- public bool SajetTransClose() => true;
- public bool SajetTransLog(string data) => true;
- public string SajetTransRegisterHeader(string model, string header) => "";
- public bool SajetTransReport(ValueReportDatas reportPair) => true;
- public bool SajetTransSignIn(ref string data) => true;
- public bool SajetTransSnCheck(ref string serialNumber) => true;
- public bool SajetTransSnCheck(ref string sn, string model) => true;
- public bool SajetTransStart() => true;
- public bool SajetTransWoCheck(ref string workOrder) => true;
- }
- }
|