mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-07 09:46:38 +08:00
20 lines
292 B
TypeScript
20 lines
292 B
TypeScript
|
|
export type ResultList = {
|
|||
|
|
status: number;
|
|||
|
|
data?: Array<any>;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
export type Result = {
|
|||
|
|
status: number;
|
|||
|
|
data?: any;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
export type ResultPage = {
|
|||
|
|
status: number;
|
|||
|
|
data?: {
|
|||
|
|
/** 列表数据 */
|
|||
|
|
items: Array<any>;
|
|||
|
|
/** 总条目数 */
|
|||
|
|
totalCount?: number;
|
|||
|
|
};
|
|||
|
|
};
|