8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
/**数据列表 */
|
|
type DataList = {
|
|
code: number;
|
|
msg: string;
|
|
total: number;
|
|
rows: Record<string, any>;
|
|
};
|