feat:历史账单界面接通
This commit is contained in:
33
src/typings/api.d.ts
vendored
33
src/typings/api.d.ts
vendored
@@ -629,4 +629,37 @@ declare namespace Api {
|
||||
/** Combined order params type */
|
||||
type SubmitOrderParams = PackageOrderParams | RechargeOrderParams;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Namespace Bill
|
||||
*
|
||||
* Backend api module: "bill"
|
||||
*/
|
||||
namespace Bill {
|
||||
/** Bill record information */
|
||||
interface BillRecord {
|
||||
id: string;
|
||||
startTime: string | null;
|
||||
endTime: string | null;
|
||||
traffic: string | null;
|
||||
amount: string;
|
||||
status: number;
|
||||
createTime: string;
|
||||
}
|
||||
|
||||
/** Bill list response */
|
||||
interface BillListResponse {
|
||||
rows: BillRecord[];
|
||||
total: number;
|
||||
}
|
||||
|
||||
/** Bill query parameters */
|
||||
interface BillQueryParams {
|
||||
pageNum: number;
|
||||
pageSize: number;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user