This commit is contained in:
Your Name
2026-04-15 12:00:09 +08:00
parent 2962da0907
commit 845d68110b
426 changed files with 43961 additions and 34179 deletions

View File

@@ -1,20 +1,15 @@
import { ReqPage, ResultData } from "@/api/interface/index";
export namespace TransactionList {
// 查询接口
export interface ReqParams extends ReqPage {
key?: string;
t_type?: any;
}
// 保存接口
export interface saveParams {
ft_id?: number;
}
// 删除接口
export interface delParams {
ft_id?: string;
}
// 列表接口响应
export interface ResList {
ft_id: number;
mu_id: number;
@@ -30,6 +25,5 @@ export namespace TransactionList {
mu_email: any;
created_at: string;
}
// 保存删除响应接口
export interface ResData extends ResultData {}
}