mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-25 02:33:16 +08:00
27 lines
462 B
TypeScript
27 lines
462 B
TypeScript
|
export interface ListResult {
|
||
|
list: Array<ListModel>;
|
||
|
}
|
||
|
export interface ListModel {
|
||
|
adminName: string;
|
||
|
amount: string;
|
||
|
contractType: number;
|
||
|
index: number;
|
||
|
name: string;
|
||
|
no: string;
|
||
|
paymentType: number;
|
||
|
status: number;
|
||
|
updateTime: Date;
|
||
|
}
|
||
|
|
||
|
export interface CardListResult {
|
||
|
list: Array<CardList>;
|
||
|
}
|
||
|
export interface CardList {
|
||
|
banner: string;
|
||
|
description: string;
|
||
|
index: number;
|
||
|
isSetup: boolean;
|
||
|
name: string;
|
||
|
type: number;
|
||
|
}
|