ISajetConnect.cs 705 B

12345678910111213141516171819202122
  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 SajetTranFinishSuccess();
  16. bool SajetTranFinishFail(MesErrorCode errorCode);
  17. string SajetTransRegisterHeader(string model, string header);
  18. bool SajetTransReport(ValueReportDatas reportPair);
  19. bool SajetTransLog(string data);
  20. }
  21. }