chore: 域名自动同步初步

This commit is contained in:
xiaojunnuo
2026-01-16 18:18:39 +08:00
parent 8685aa371a
commit be1a70299f
22 changed files with 248 additions and 10 deletions
+3 -3
View File
@@ -11,11 +11,11 @@ export type PageSearch = {
// sortOrder?: "asc" | "desc";
};
export type PageRes = {
export type PageRes<T = any> = {
pageNo?: number;
pageSize?: number;
total?: string;
list: any[];
total?: number;
list: T[];
};
export class Pager {