public enum SystemConfig extends java.lang.Enum<SystemConfig>
| Enum Constant and Description |
|---|
DefaultPw
用户新增时设置的默认密码
|
DeptMenuRight
是否允许子部门递归继承父部门的菜单权限 0 不继承 1 继承
|
DeptRoleOrder
部门用户组树中,部门与用户组的先后顺序( 0代表部门在前,1代表用户组在前),默认为0
|
DeptStaffOrder
部门用户树中,部门与用户的先后顺序( 0代表部门在前,1代表用户在前),默认为0
|
FilePath
文件服务器地址(如:http://192.168.1.105:9999/pp) 默认不填(本地上传)
|
HeaderPath
默认值,相对于项目跟路径,下的head路径
|
ImportSqlFile
该文件放入 src 源文件目录下,如:user.sql(注意:文件不能命名为import.sql),多个文件以逗号分隔。
|
IsRecursive
是否支持部门列表、用户组列表、用户列表的递归查询 true 是,false 否
|
LoginErrorTimes
一天内允许密输入错误的次数,超过N次,一天内禁止此用户登录。 不填表示不控制密码输入错误次数
|
OnlyLogin
登录系统用户是否允许多地点登录 true 是,false 否
|
RemindInterval
提醒间隔时间 ,默认为空(不开启提醒功能),单位为秒
|
RemindLevel
提醒级别,三个数值以逗号分隔(单位秒)对应普通、紧急、严重,请勿颠倒顺序
|
RootAddRole
是否可以给根部门添加用户组 true 是,false 否
|
RootAddUser
是否可以给根部门添加用户 true 是,false 否
|
TimeLimit
密码有效期设置,单位(天 ) 默认不填(没有有效期)
|
TitleNameSeq
菜单导航全路径 ,true表示从父菜单到子菜单 ,false表示从子菜单到父菜单
|
WidgetReplaceText
控件权限中不可见默认显示字符
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDefaultValue()
获取默认值
|
java.lang.String |
getValue()
功能描述:获取配置项的当前值
|
static SystemConfig |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SystemConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemConfig ImportSqlFile
public static final SystemConfig TitleNameSeq
public static final SystemConfig IsRecursive
public static final SystemConfig WidgetReplaceText
public static final SystemConfig FilePath
public static final SystemConfig RemindInterval
public static final SystemConfig RemindLevel
public static final SystemConfig OnlyLogin
public static final SystemConfig DefaultPw
public static final SystemConfig TimeLimit
public static final SystemConfig LoginErrorTimes
public static final SystemConfig DeptMenuRight
public static final SystemConfig RootAddUser
public static final SystemConfig RootAddRole
public static final SystemConfig DeptStaffOrder
public static final SystemConfig DeptRoleOrder
public static final SystemConfig HeaderPath
public static SystemConfig[] values()
for (SystemConfig c : SystemConfig.values()) System.out.println(c);
public static SystemConfig valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public java.lang.String getDefaultValue()