remove frontend directory from git tracking

This commit is contained in:
2026-09-14 17:56:43 +08:00
parent 4f296eb58c
commit 6d44b8ff37
34 changed files with 0 additions and 2648 deletions
-34
View File
@@ -1,34 +0,0 @@
export interface FundProduct {
id: number;
product_code: string;
product_name: string;
product_type: string;
risk_level: string;
expected_return: number | null;
nav: number | null;
nav_date: string | null;
fee_rate: number;
term_days: number;
fund_manager: string | null;
status: string;
support_purchase: boolean;
support_dca: boolean;
}
export interface FundProductList {
total: number;
page: number;
page_size: number;
items: FundProduct[];
}
export interface UserPayload {
id: number;
username: string;
real_name?: string | null;
phone?: string | null;
user_type: string;
employee_role: string | null;
customer_level: string | null;
status: string;
}