This commit is contained in:
qq
2026-04-21 22:34:39 +08:00
commit c28429b589
718 changed files with 48804 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { BaseModel } from './_base_model';
import { UserModel } from './user.model';
import { UserBankModel } from './user_bank.model';
export declare enum WithdrawStatus {
Pending = 0,
Success = 1,
Rejected = 2
}
export declare class WithdrawModel extends BaseModel {
userId: number;
amount: string;
actualAmount: string;
status: WithdrawStatus;
userBankId: number;
cardNo: string;
bankName: string;
phone: string;
rejectReason?: string;
remark?: string;
user?: UserModel;
userBank?: UserBankModel;
}