AppSettings.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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 GetWeight { get; set; }
  22. public string TaskStatusUpdateConNoStr { get; set; }
  23. public List<string> TaskStatusUpdateConNoList
  24. {
  25. get
  26. {
  27. return new List<string>(TaskStatusUpdateConNoStr.Split(','));
  28. }
  29. }
  30. /// <summary>
  31. /// 方法调用超时时间(毫秒)
  32. /// </summary>
  33. public int MethodOutTimeMilliseconds { get; set; }
  34. }
  35. }