| 名称 | 类型 | 描述 | 约束 | 长度限制 | 外键 |
|---|---|---|---|---|---|
| withdraw_id | int | 主键 | |||
withdraw_amount | int | 提现金额 | >= 0 | ||
| insert_time | timestamp | 提现时间 | NOT NULL | ||
| user_id | int | 提现用户 | NOT NULL | user_tab表中的user_id | |
| sale_share_id | int | 对应的销售积分的id | 对应sale_share_tab中的 sale_share_id | ||
| profit_merchant_id | int | 对应商家资金表的id | 对应 profit_merchant_tab中的 profit_merchant_id | ||
withdraw_remark | string | 提现备注 | |||
| bank_card | string | 银行卡号 | |||
| alipay | string | 支付宝 | |||
| string | 微信 | ||||
| remain_amount | int | 交易完成后,用户剩余的金额 | |||
| is_process | int | 提现信息是否处理 | 枚举:0表示未处理,1表示处理(默认是0) | ||
| update_time | timestamp | 提现处理时间 |