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