AppSettings.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace WCS.Data
  5. {
  6. public class AppSettingsHelper
  7. {
  8. public static AppSettings AppSettings { get; set; }
  9. }
  10. public class AppSettings
  11. {
  12. public string GetInTask { get; set; }
  13. public string GetTunnelList { get; set; }
  14. public string GetWareCell { get; set; }
  15. public string PutTaskStep { get; set; }
  16. public string GetMoveTask { get; set; }
  17. public string GetExcTask { get; set; }
  18. public string GetOutTask { get; set; }
  19. public string PutDevInfo { get; set; }
  20. public bool IsOutEmptyBox { get; set; }
  21. public string GetMatureContinueMode { get; set; }
  22. public string GetWeight { get; set; }
  23. public string TaskStatusUpdateConNoStr { get; set; }
  24. public List<string> TaskStatusUpdateConNoList
  25. {
  26. get
  27. {
  28. return new List<string>(TaskStatusUpdateConNoStr.Split(','));
  29. }
  30. }
  31. /// <summary>
  32. /// 方法调用超时时间(毫秒)
  33. /// </summary>
  34. public int MethodOutTimeMilliseconds { get; set; }
  35. }
  36. }