ISajetConnect.cs 744 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MesAdaptor
  7. {
  8. public interface ISajetConnect
  9. {
  10. bool SajetTransStart();
  11. bool SajetTransClose();
  12. bool SajetTransSignIn(ref string data);
  13. bool SajetTransWoCheck(ref string workOrder);
  14. bool SajetTransSnCheck(ref string serialNumber);
  15. bool SajetTransSnCheck(ref string sn, string model);
  16. bool SajetTranFinishSuccess();
  17. bool SajetTranFinishFail(MesErrorCode errorCode);
  18. string SajetTransRegisterHeader(string model, string header);
  19. bool SajetTransReport(ValueReportDatas reportPair);
  20. bool SajetTransLog(string data);
  21. }
  22. }