蛋蛋星球-制度模式
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mq_egg_app.go 869 B

1 month ago
123456789101112131415161718192021222324252627
  1. package md
  2. const EggAppExchange = "egg.app"
  3. const (
  4. EggFinWithdrawApply = "egg_fin_withdraw_apply" // 提现申请
  5. )
  6. type EggFinWithdrawApplyData struct {
  7. Id int64 `json:"id"`
  8. Uid int64 `json:"uid"`
  9. AdmId int `json:"adm_id"`
  10. Amount string `json:"amount"`
  11. RealAmount string `json:"real_amount"`
  12. Fee string `json:"fee"`
  13. Type int `json:"type"`
  14. WithdrawAccount string `json:"withdraw_account"`
  15. WithdrawName string `json:"withdraw_name"`
  16. Reason int `json:"reason"`
  17. PaymentDate string `json:"payment_date"`
  18. State int `json:"state"`
  19. WithdrawKind int `json:"withdraw_kind"`
  20. IsFirst int `json:"is_first"`
  21. Memo string `json:"memo"`
  22. UpdateAt string `json:"update_at"`
  23. CreateAt string `json:"create_at"`
  24. }