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.

35 lines
776 B

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