/** * 用户提现类型定义 */ export interface UserWithdraw { id?: number userId?: number amount?: string withdrawType?: number // 0-微信零钱, 1-银行卡, 2-支付宝 accountInfo?: string status?: number createTime?: string } export interface WithdrawRequest { amount: string withdrawType: number accountInfo?: string }