14 lines
304 B
Go
14 lines
304 B
Go
|
|
package managecenterModel
|
||
|
|
|
||
|
|
// MC系统配置列表对象
|
||
|
|
type SysConfig struct {
|
||
|
|
// 新服有效天数
|
||
|
|
NewServerValidDays int32 `json:"NewServerValidDays"`
|
||
|
|
|
||
|
|
// 用户Id
|
||
|
|
WhiteListServerIds string `json:"WhiteListServerIds"`
|
||
|
|
|
||
|
|
//登录本地验证key
|
||
|
|
DynamicLoginKey string `json:"DynamicLoginKey"`
|
||
|
|
}
|