华恒Mes鼎捷代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
883 B

5 months ago
  1. using System;
  2. namespace ICSSoft.Frame.DataConnect.Action
  3. {
  4. /// <summary>
  5. /// ���ݲɼ�ģ���ӿ�
  6. /// ֻ�����ݲɼ��ڲ�ģ������
  7. /// </summary>
  8. public interface IAction
  9. {
  10. Messages Execute(ActionEventArgs actionEventArgs);
  11. }
  12. /// <summary>
  13. /// ��չ�����ݲɼ��ӿ�
  14. /// ��Execute������һ��������ActionCheckStatus�����Լ�¼Action�IJ���
  15. /// </summary>
  16. public interface IActionWithStatus : IAction
  17. {
  18. Messages Execute(ActionEventArgs actionEventArgs, ActionCheckStatus actionCheckStatus);
  19. }
  20. public interface IActionWithStatusNew : IAction
  21. {
  22. Messages Execute(ActionEventArgs actionEventArgs, ActionCheckStatus actionCheckStatus, object[] OPBOMinno);
  23. }
  24. public interface IActionWithStatusFCT : IAction
  25. {
  26. Messages Execute(ActionEventArgs actionEventArgs, ActionCheckStatus actionCheckStatus, string workPoint);
  27. }
  28. // Added end
  29. }