first
This commit is contained in:
28
src/api/interface/finance/account/list.ts
Normal file
28
src/api/interface/finance/account/list.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import { ReqPage, ResultData } from "@/api/interface/index";
|
||||
export namespace AccountList {
|
||||
// 查询接口
|
||||
export interface ReqParams extends ReqPage {
|
||||
key?: string;
|
||||
}
|
||||
// 保存接口
|
||||
export interface saveParams {
|
||||
mu_id?: number;
|
||||
}
|
||||
// 删除接口
|
||||
export interface delParams {
|
||||
mu_id?: string;
|
||||
}
|
||||
// 列表接口响应
|
||||
export interface ResList {
|
||||
mu_id: string;
|
||||
uf_balance: any;
|
||||
mu_nickname: any;
|
||||
mu_username: number;
|
||||
mu_email: any;
|
||||
mu_is_vip: any;
|
||||
expire_vip_day: any;
|
||||
created_at: string;
|
||||
}
|
||||
// 保存删除响应接口
|
||||
export interface ResData extends ResultData {}
|
||||
}
|
||||
35
src/api/interface/finance/account/transaction.ts
Normal file
35
src/api/interface/finance/account/transaction.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
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 {}
|
||||
}
|
||||
36
src/api/interface/finance/recharge/feedback.ts
Normal file
36
src/api/interface/finance/recharge/feedback.ts
Normal file
@@ -0,0 +1,36 @@
|
||||
import { ReqPage, ResultData } from "@/api/interface/index";
|
||||
export namespace FeedbackList {
|
||||
// 查询接口
|
||||
export interface ReqParams extends ReqPage {
|
||||
key?: string;
|
||||
t_type?: any;
|
||||
}
|
||||
// 保存接口
|
||||
export interface saveParams {
|
||||
rf_id?: number;
|
||||
rf_state: any;
|
||||
}
|
||||
// 删除接口
|
||||
export interface delParams {
|
||||
rf_id?: string;
|
||||
}
|
||||
|
||||
// 列表接口响应
|
||||
export interface ResList {
|
||||
rf_id: number;
|
||||
vo_id: number;
|
||||
rf_type: any;
|
||||
rf_screenshot_detail: any;
|
||||
rf_state: any;
|
||||
vo_order_no: string;
|
||||
vp_id: any;
|
||||
vp_name: any;
|
||||
rf_pay_time: any;
|
||||
rf_description: string;
|
||||
rf_contact: any;
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
// 保存删除响应接口
|
||||
export interface ResData extends ResultData {}
|
||||
}
|
||||
38
src/api/interface/finance/recharge/order.ts
Normal file
38
src/api/interface/finance/recharge/order.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
import { ReqPage, ResultData } from "@/api/interface/index";
|
||||
export namespace OrderList {
|
||||
// 查询接口
|
||||
export interface ReqParams extends ReqPage {
|
||||
key?: string;
|
||||
vo_status?: any;
|
||||
created_at_start?: any;
|
||||
created_at_end?: any;
|
||||
}
|
||||
// 保存接口
|
||||
export interface saveParams {
|
||||
vo_id?: number;
|
||||
}
|
||||
// 删除接口
|
||||
export interface delParams {
|
||||
vo_id?: string;
|
||||
}
|
||||
// 列表接口响应
|
||||
export interface ResList {
|
||||
vo_id: number;
|
||||
mu_id: string;
|
||||
vp_name: string;
|
||||
vo_status: any;
|
||||
vo_price: any;
|
||||
vo_vip_day: number;
|
||||
vo_order_no: number;
|
||||
vo_out_order_no: string;
|
||||
vo_out_channel_code: number;
|
||||
vo_out_business_type: number;
|
||||
vo_success_at: number;
|
||||
mu_nickname: number;
|
||||
mu_username: number;
|
||||
mu_email: number;
|
||||
created_at: string;
|
||||
}
|
||||
// 保存删除响应接口
|
||||
export interface ResData extends ResultData {}
|
||||
}
|
||||
42
src/api/interface/finance/recharge/package.ts
Normal file
42
src/api/interface/finance/recharge/package.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
import { ReqPage, ResultData } from "@/api/interface/index";
|
||||
export namespace PackageList {
|
||||
// 查询接口
|
||||
export interface ReqParams extends ReqPage {
|
||||
key?: string;
|
||||
t_type?: any;
|
||||
}
|
||||
// 保存接口
|
||||
export interface saveParams {
|
||||
vp_id?: number;
|
||||
vp_name: string;
|
||||
vp_vip_day: any;
|
||||
vp_status: any;
|
||||
vp_tag_price: number;
|
||||
vp_real_price: number;
|
||||
vp_best_describe: string;
|
||||
vp_icon: string;
|
||||
package_sort: number;
|
||||
}
|
||||
// 删除接口
|
||||
export interface delParams {
|
||||
vp_id?: string;
|
||||
}
|
||||
|
||||
// 列表接口响应
|
||||
export interface ResList {
|
||||
vp_id: number;
|
||||
vp_name: string;
|
||||
vp_vip_day: any;
|
||||
vp_status: any;
|
||||
vp_tag_price: number;
|
||||
vp_real_price: number;
|
||||
vp_best_describe: string;
|
||||
vp_icon_detail: string;
|
||||
vp_icon: any;
|
||||
package_sort: any;
|
||||
vp_sort: number;
|
||||
created_at: string;
|
||||
}
|
||||
// 保存删除响应接口
|
||||
export interface ResData extends ResultData {}
|
||||
}
|
||||
Reference in New Issue
Block a user