feat: 完成用户页面查询

This commit is contained in:
橙子
2024-08-31 22:01:55 +08:00
parent e39d381f08
commit 8be36f088b
8 changed files with 172 additions and 185 deletions

View File

@@ -0,0 +1,19 @@
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;
};
};