| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Text;
 
- namespace WCS.Data
 
- {
 
-     public class AppSettingsHelper
 
-     {
 
-         public static AppSettings AppSettings { get; set; }
 
-     }
 
-     public class AppSettings
 
-     {
 
-         public string GetInTask { get; set; }
 
-         public string GetTunnelList { get; set; }
 
-         public string GetWareCell { get; set; }
 
-         public string PutTaskStep { get; set; }
 
-         public string GetMoveTask { get; set; }
 
-         public string GetExcTask { get; set; }
 
-         public string GetOutTask { get; set; }
 
-         public string PutDevInfo { get; set; }
 
-         public bool IsOutEmptyBox { get; set; }
 
-         public  string GetMatureContinueMode { get; set; }
 
-         public string GetWeight { get; set; }
 
-         public string TaskStatusUpdateConNoStr { get; set; }
 
-         public List<string> TaskStatusUpdateConNoList
 
-         {
 
-             get
 
-             {
 
-                 return new List<string>(TaskStatusUpdateConNoStr.Split(','));
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// 方法调用超时时间(毫秒)
 
-         /// </summary>
 
-         public int MethodOutTimeMilliseconds { get; set; }
 
-     }
 
- }
 
 
  |