|
|
@@ -3,9 +3,10 @@ package md |
|
|
|
const EggAppExchange = "egg.app" |
|
|
|
|
|
|
|
const ( |
|
|
|
EggNewUserRegister = "egg_new_user_register" // 新用户注册 |
|
|
|
EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 |
|
|
|
EggFinWithdrawApplyError = "egg_fin_deposit_apply_error" |
|
|
|
EggNewUserRegister = "egg_new_user_register" // 新用户注册 |
|
|
|
EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 |
|
|
|
EggFinWithdrawApplyError = "egg_fin_deposit_apply_error" // 提现申请异常队列 |
|
|
|
EggRoutKeyForRecordActive = "egg_record_active" // 更新活跃记录 |
|
|
|
) |
|
|
|
|
|
|
|
type EggNewUserRegisterData struct { |
|
|
@@ -37,3 +38,8 @@ type EggFinWithdrawApplyErrorData struct { |
|
|
|
ErrorInfo string `json:"error_info"` // 错误信息 |
|
|
|
Ext []byte `json:"ext"` // 如果尝试解析失败,则将整个结构体放入 |
|
|
|
} |
|
|
|
|
|
|
|
type EggStructForRecordActiveData struct { |
|
|
|
Uid int64 `json:"uid"` |
|
|
|
TotalPersonEggPoints string `json:"total_person_egg_points"` // 个人活跃积分 |
|
|
|
} |