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
+20
View File
@@ -0,0 +1,20 @@
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;
}