蛋蛋星球 后台端
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.

md_withdraw.go 7.9 KiB

1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
1 week ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package md
  2. type Paginate struct {
  3. Limit int `json:"limit"` // 每页大小
  4. Page int `json:"page"` // 页数
  5. Total int64 `json:"total"` // 总数据量
  6. }
  7. type GetWithdrawSettingResp struct {
  8. Id int64 `json:"id"`
  9. FrequencySet WithdrawFrequencySettingStruct `json:"frequency_set"` // 频率设置(0:日 1:周 2:月 3:年)
  10. WithdrawType int `json:"withdraw_type"` // 提现方式(1:支付宝 2:微信)
  11. VipLevelLimit int `json:"vip_level_limit"` // 提现等级限制
  12. IsRealName int `json:"is_real_name"` // 是否实名(0:否 1:是)
  13. WithdrawNumsLimit int `json:"withdraw_nums_limit"` // 提现次数限制(对应上方设置周期,0为不限制,失败、驳回不计数 )
  14. WithdrawAmountLimit string `json:"withdraw_amount_limit"` // 提现金额限制(0为不限制,大于等于该金额才可以申请提现 )
  15. WithdrawMultipleLimit string `json:"withdraw_multiple_limit"` // 提现倍数限制(0为不限制,金额限制倍数才可以申请提现 )
  16. IsSupportDecimalPoint int `json:"is_support_decimal_point"` // 是否支持小数点(0:否 1:是)
  17. IsAuto int `json:"is_auto"` // 是否开启自动提现(0:否 1:是)
  18. WithdrawTimeInterval string `json:"withdraw_time_interval"` // 提现时段
  19. WithdrawFeeSet string `json:"withdraw_fee_set"` // 提现手续费设置
  20. CreateAt string `json:"create_at"` // 申请时间
  21. UpdateAt string `json:"update_at"` // 处理时间
  22. }
  23. type UpdateWithdrawSettingReq struct {
  24. Id int64 `json:"id,required"`
  25. FrequencySet WithdrawFrequencySettingStruct `json:"frequency_set"` // 频率设置(num 个 duration) (duration (0.天 1.小时 2.周 3.月 4.年))
  26. WithdrawType int `json:"withdraw_type"` // 提现方式(1:支付宝 2:微信)
  27. VipLevelLimit int `json:"vip_level_limit"` // 提现等级限制
  28. IsRealName int `json:"is_real_name"` // 是否实名(0:否 1:是)
  29. WithdrawNumsLimit int `json:"withdraw_nums_limit"` // 提现次数限制(对应上方设置周期,0为不限制,失败、驳回不计数 )
  30. WithdrawAmountLimit string `json:"withdraw_amount_limit"` // 提现金额限制(0为不限制,大于等于该金额才可以申请提现 )
  31. WithdrawMultipleLimit string `json:"withdraw_multiple_limit"` // 提现倍数限制(0为不限制,金额限制倍数才可以申请提现 )
  32. IsSupportDecimalPoint int `json:"is_support_decimal_point"` // 是否支持小数点(0:否 1:是)
  33. IsAuto int `json:"is_auto"` // 是否开启自动提现(0:否 1:是)
  34. WithdrawTimeInterval string `json:"withdraw_time_interval"` // 提现时段
  35. WithdrawFeeSet string `json:"withdraw_fee_set"` // 提现手续费设置
  36. }
  37. type WithdrawFrequencySettingStruct struct { //swag 生成不了,把这个挪出来了
  38. Duration int `json:"duration"` // 周期 (0.天 1.小时 2.周 3.天 4.月 5.年)
  39. Num int `json:"num"` // 周期数
  40. }
  41. type GetWithdrawApplyListReq struct {
  42. Uid string `json:"uid"` // 用户 ID
  43. Nickname string `json:"nickname"` // 用户昵称
  44. Phone string `json:"phone"` // 用户手机号
  45. ParentID string `json:"parent_id"` // 推荐人 ID
  46. IsFirst string `json:"is_first"` // 是否首次提现 (0. 否 1.是 传空查全部)
  47. WithdrawType string `json:"withdraw_type"` // 提现方式(1:支付宝 2:微信)
  48. WithdrawAccount string `json:"withdraw_account"` // 支付宝/微信昵称
  49. WithdrawName string `json:"withdraw_name"` // 支付宝姓名
  50. PaymentType string `json:"payment_type"` // 打款类型 1:手动;2:自动
  51. State string `json:"state"` // 状态 0申请中,1通过,2完成,3失败,4处理中(队列)
  52. ApplyStartAt string `json:"apply_start_at"` // 申请开始时间
  53. ApplyEndAt string `json:"apply_end_at"` // 申请结束时间
  54. ExamineStartAt string `json:"examine_start_at"` // 审核开始时间
  55. ExamineEndAt string `json:"examine_end_at"` // 审核结束时间
  56. AmountBegin string `json:"amount_begin"` // 最小金额
  57. AmountEnd string `json:"amount_end"` // 最大金额
  58. Level string `json:"level"` // 会员等级
  59. Page int `json:"page"` // 页数
  60. Limit int `json:"limit"` //页面大小
  61. }
  62. type WithdrawApplyInfo struct {
  63. UserID int64 `xorm:"usera.id"` // 会员 ID
  64. Nickname string `xorm:"usera.nickname"` // 用户名称
  65. ParentID int64 `xorm:"parent_id"` // 推荐人ID
  66. ParentPhone string `xorm:"userb.phone"` // 推荐人手机号
  67. PayName string `json:"apply.withdraw_name"` // 支付宝/微信昵称
  68. PayAccount string `json:"apply.withdraw_account"` // 支付宝/微信账号
  69. Tag int `json:"tag.id"` // 标签
  70. WithdrawType int `json:"wallet_flow.withdraw_type"` // 提现方式(1:支付宝 2:微信)
  71. InviteCode string `json:"usera.system_invite_code"` // 邀请码
  72. Amount string `json:"apply.amount"` // 提现金额
  73. SysFee string `json:"wallet_flow.sys_fee"` // 手续费
  74. State int `json:"apply.state"` // 状态 0申请中,1通过,2完成,3失败,4处理中(队列)
  75. ApplyAt string `json:"apply.create_at"` // 申请时间
  76. PayAt string `json:"wallet_flow.create_at"` // 到账时间
  77. Memo string `json:"apply.memo"` // 备注
  78. }
  79. type GetWithdrawApplyListResp struct {
  80. LevelsList []map[string]interface{} `json:"levels_list"` // 等级列表
  81. TagsList []map[string]interface{} `json:"tags_list"` // 标签列表
  82. List []GetWithdrawApplyListNode `json:"list"`
  83. Paginate Paginate `json:"paginate"` // 分页信息
  84. }
  85. type GetWithdrawApplyListNode struct {
  86. UserID int64 `json:"user_id"` // 会员 ID
  87. Nickname string `json:"nickname"` // 用户名称
  88. ParentID int64 `xorm:"parent_id"` // 推荐人ID
  89. ParentPhone string `xorm:"parent_phone"` // 推荐人手机号
  90. AliPayName string `json:"ali_pay_name"` // 支付宝昵称
  91. WechatPayName string `json:"wechat_pay_name"` // 微信昵称
  92. AliPayAccount string `json:"ali_pay_account"` // 支付宝账号
  93. WechatPayAccount string `json:"wechat_pay_account"` // 微信账号
  94. Tag string `json:"tag"` // 标签
  95. WithdrawType int `json:"withdraw_type"` // 提现方式(1:支付宝 2:微信)
  96. InviteCode string `json:"invite_code"` // 邀请码
  97. Amount string `json:"amount"` // 提现金额
  98. ActualReceipt string `json:"actual_receipt"` // 实际到账
  99. SysFee string `json:"sys_fee"` // 手续费
  100. State int `json:"state"` // 状态 0申请中,1通过,2完成,3失败,4处理中(队列)
  101. ApplyAt string `json:"apply_at"` // 申请时间
  102. PayAt string `json:"pay_at"` // 到账时间
  103. Memo string `json:"memo"` // 备注
  104. }