package md const EggAppExchange = "egg.app" const ( EggNewUserRegister = "egg_new_user_register" // 新用户注册 EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 EggFinWithdrawApplyError = "egg_fin_deposit_apply_error" // 提现申请异常队列 EggRoutKeyForRecordActive = "egg_record_active" // 更新活跃记录 ) type EggNewUserRegisterData struct { Uid int64 `json:"uid"` } type EggFinWithdrawApplyData struct { Id int64 `json:"id"` Uid int64 `json:"uid"` AdmId int `json:"adm_id"` Amount string `json:"amount"` RealAmount string `json:"real_amount"` Fee string `json:"fee"` Type int `json:"type"` WithdrawAccount string `json:"withdraw_account"` WithdrawName string `json:"withdraw_name"` Reason int `json:"reason"` PaymentDate string `json:"payment_date"` State int `json:"state"` WithdrawKind int `json:"withdraw_kind"` IsFirst int `json:"is_first"` Memo string `json:"memo"` UpdateAt string `json:"update_at"` CreateAt string `json:"create_at"` } type EggFinWithdrawApplyErrorData struct { EggFinWithdrawApplyData EggFinWithdrawApplyData `json:"egg_fin_withdraw_apply_data"` // 原始申请数据 ErrorInfo string `json:"error_info"` // 错误信息 Ext []byte `json:"ext"` // 如果尝试解析失败,则将整个结构体放入 } type EggStructForRecordActiveData struct { Uid int64 `json:"uid"` TotalPersonEggPoints string `json:"total_person_egg_points"` // 个人活跃积分 }