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 GetExeTask { 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 TaskStatusUpdateConNoList { get { return new List(TaskStatusUpdateConNoStr.Split(',')); } } /// /// 方法调用超时时间(毫秒) /// public int MethodOutTimeMilliseconds { get; set; } } }