using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JinYuan.Models { public class SysConfig { /// /// 开机自动启动 /// public bool AutoStart { get; set; } /// ///启动自动登录 /// public bool AutoLogin { get; set; } /// ///无操作自动锁屏 /// public bool AutoLock { get; set; } /// ///锁屏间隙时间,单位是分钟 /// public int LockPeriod { get; set; } /// ///无操作自动锁屏 /// public bool AutoQieHuanM { get; set; } /// ///锁屏间隙时间,单位是分钟 /// public int QieHuanMPeriod { get; set; } /// /// 调试模式 /// public bool IsDebugMode { get; set; } /// ///曲线显示数量 /// public int ShowSeriesCount { get; set; } /// /// 开启刷卡模式 /// public bool SwipeCardMode { get; set; } /// /// MES/非MES模式切换 /// public bool MesModeSwitching { get; set;} /// /// 切屏 /// public bool ScreenCutting { get; set; } /// /// 获取MES参数 /// public bool GetMesParam { get; set; } /// /// 线程耗时日志保存 /// public bool SaveThreadTime { get; set; } /// /// 开启无卷芯码进出站一体模式 /// public bool NoRollCodeMode { get; set; } } }