import { BaseModel } from './_base_model'; import { UserModel } from './user.model'; export declare enum WalletBillType { Recharge = 601, WithdrawReject = 602, Transfer = 603, FinancialProfit = 604, FinancialPrincipalReturn = 605, Withdrawal = 901, FinancialBuy = 902 } export declare class WalletBillModel extends BaseModel { type: WalletBillType; before: string; after: string; amount: string; remark?: string; userId: number; user?: UserModel; }