|
|
@@ -3,11 +3,12 @@ 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" // 更新活跃记录 |
|
|
|
EggRoutKeyForAutoScoreData = "egg_auto_score" // 自动打分 |
|
|
|
EggNewUserRegister = "egg_new_user_register" // 新用户注册 |
|
|
|
EggRoutKeyForAddPublicPlatoonUserRelationCommission = "add_public_platoon_user_relation_commission" // 加入公排 |
|
|
|
EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 |
|
|
|
EggFinWithdrawApplyError = "egg_fin_deposit_apply_error" // 提现申请异常队列 |
|
|
|
EggRoutKeyForRecordActive = "egg_record_active" // 更新活跃记录 |
|
|
|
EggRoutKeyForAutoScoreData = "egg_auto_score" // 自动打分 |
|
|
|
) |
|
|
|
|
|
|
|
type EggNewUserRegisterData struct { |
|
|
@@ -62,3 +63,8 @@ type EggStructForAutoScoreData struct { |
|
|
|
BrowseInterfaceNums int `json:"browse_interface_nums"` |
|
|
|
PersonAddActivityValue int `json:"person_add_activity_value"` |
|
|
|
} |
|
|
|
|
|
|
|
type AddPublicPlatoonUserRelationCommissionReq struct { |
|
|
|
Uid string `json:"uid"` |
|
|
|
RecommendUid string `json:"recommend_uid"` //推荐人uid |
|
|
|
} |