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