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.

34 lines
710 B

3 years ago
  1. using FrameWork.Log;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using WorkStationBase;
  8. namespace Aborlen.WorkStation
  9. {
  10. public partial class WorkStation02 : StationBase
  11. {
  12. /// <summary>
  13. /// 定时循环
  14. /// </summary>
  15. /// <param name="stationCode"></param>
  16. /// <param name="value"></param>
  17. /// <param name="triggerTime"></param>
  18. public override void CycleTimerTick()
  19. {
  20. try
  21. {
  22. }
  23. catch (Exception ex)
  24. {
  25. LogHelper.WriteLog(LogHelper.GetMethodInfo(), ex);
  26. }
  27. }
  28. }
  29. }