36 lines
882 B
TypeScript
36 lines
882 B
TypeScript
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;
|
|
ft_order_no: string;
|
|
tp_purpose_code: any;
|
|
ft_operation: any;
|
|
ft_amount: any;
|
|
ft_remaining_balance: any;
|
|
ft_description: string;
|
|
tp_purpose: any;
|
|
mu_nickname: any;
|
|
mu_username: any;
|
|
mu_email: any;
|
|
created_at: string;
|
|
}
|
|
// 保存删除响应接口
|
|
export interface ResData extends ResultData {}
|
|
}
|