service/apollostruct/account_init.go

30 lines
1.8 KiB
Go

package apollostruct
// 账户初始化数据
type AccountInitCfg struct {
DefaultName string `json:"default_name"` //默认昵称
DefaultRole int64 `json:"default_role"` //默认角色
DefaultIsDndModeEnabled int64 `json:"default_is_dnd_mode_enabled"` //默认是否开启勿扰模式
DefaultAvatarImageId int64 `json:"default_avatar_image_id"` //默认头像ID
LevelLowerBound int64 `json:"level_lower_bound"` //等级下界
LevelUpperBound int64 `json:"level_upper_bound"` //等级上界
LevelUpExpVector1 []int64 `json:"level_up_exp_vector_1"` //1-10级升级所需经验向量
LevelUpExpVector2 []int64 `json:"level_up_exp_vector_2"` //11-20级升级所需经验向量
LevelUpExpVector3 []int64 `json:"level_up_exp_vector_3"` //21-30级升级所需经验
LevelUpExpVector4 []int64 `json:"level_up_exp_vector_4"` //31-40级升级所需经验
LevelUpExpVector5 []int64 `json:"level_up_exp_vector_5"` //41-50级升级所需经验
LevelUpExpVector6 []int64 `json:"level_up_exp_vector_6"` //51-60级升级所需经验
LevelUpExpVector7 []int64 `json:"level_up_exp_vector_7"` //61-70级升级所需经验
LevelUpExpVector8 []int64 `json:"level_up_exp_vector_8"` //71-80级升级所需经验
LevelUpExpVector9 []int64 `json:"level_up_exp_vector_9"` //81-90级升级所需经验
LevelUpExpVector10 []int64 `json:"level_up_exp_vector_10"` //91-100级升级所需经验
}
type CancelledAccountCfg struct {
AvatarImageId int64 `json:"avatar_image_id"`
Name string `json:"name"`
MobilePhone string `json:"mobile_phone"`
PhoneHash string `json:"phone_hash"`
Password string `json:"password"`
}