From 610f42f41f3a27f10dd4508077b45cf959c5983e Mon Sep 17 00:00:00 2001 From: dengbiao Date: Thu, 5 Dec 2024 14:19:32 +0800 Subject: [PATCH] update --- rule/egg_energy/md/mq_egg_app.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rule/egg_energy/md/mq_egg_app.go b/rule/egg_energy/md/mq_egg_app.go index 7cecb34..1c812ec 100644 --- a/rule/egg_energy/md/mq_egg_app.go +++ b/rule/egg_energy/md/mq_egg_app.go @@ -3,10 +3,15 @@ package md const EggAppExchange = "egg.app" const ( + EggNewUserRegister = "egg_new_user_register" // 新用户注册 EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请 EggFinWithdrawApplyError = "egg_fin_deposit_apply_error" ) +type EggNewUserRegisterData struct { + Uid int64 `json:"uid"` +} + type EggFinWithdrawApplyData struct { Id int64 `json:"id"` Uid int64 `json:"uid"`