mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-27 12:16:37 +08:00
27 lines
380 B
TypeScript
27 lines
380 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;
|
|
};
|
|
};
|
|
|
|
export type ResultFile = {
|
|
status: number;
|
|
data?: Array<{
|
|
id: string;
|
|
}>;
|
|
};
|