AppSettings.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 GetExeTask { get; set; }
  14. public string GetTunnelList { get; set; }
  15. public string GetWareCell { get; set; }
  16. public string PutTaskStep { get; set; }
  17. public string GetMoveTask { get; set; }
  18. public string GetExcTask { get; set; }
  19. public string GetOutTask { get; set; }
  20. public string PutDevInfo { get; set; }
  21. public bool IsOutEmptyBox { get; set; }
  22. public string GetMatureContinueMode { get; set; }
  23. public string GetWeight { get; set; }
  24. public string TaskStatusUpdateConNoStr { get; set; }
  25. public List<string> TaskStatusUpdateConNoList
  26. {
  27. get
  28. {
  29. return new List<string>(TaskStatusUpdateConNoStr.Split(','));
  30. }
  31. }
  32. /// <summary>
  33. /// 方法调用超时时间(毫秒)
  34. /// </summary>
  35. public int MethodOutTimeMilliseconds { get; set; }
  36. }
  37. }