using System; using System.Collections.Generic; using System.Text; namespace WaterCloud.Code.Model { public class SystemConfig { /// /// 是否是Demo模式 /// public bool Demo { get; set; } /// /// 是否是调试模式 /// public bool Debug { get; set; } /// /// 允许一个用户在多个电脑同时登录 /// public bool LoginMultiple { get; set; } /// /// 允许跨域的站点 /// public string AllowCorsSite { get; set; } public string DBProvider { get; set; } public string DBConnectionString { get; set; } public string DBCommandTimeout { get; set; } public string CacheProvider { get; set; } public string HandleLogProvider { get; set; } public string RedisConnectionString { get; set; } public string SysemUserId { get; set; } public string SysemUserCode { get; set; } public string SysemUserPwd { get; set; } public string SysemMasterProject { get; set; } public string TokenName { get; set; } //缓存过期时间 public int LoginExpire { get; set; } public string HomePage { get; set; } public bool? LocalLAN { get; set; } /// /// 是否重置密码 /// public bool? ReviseSysem { get; set; } /// /// 出库质检 /// public bool? OutStorageCheck { get; set; } //看板密码 public string BoardPassword { get; set; } } }