完成管理员user-list

This commit is contained in:
2025-05-12 10:27:50 +08:00
parent ecc6307266
commit 53a0f4456b
16 changed files with 648 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
export interface User {
userId: string;
username: string;
nickname: string;
email?: string;
phone?: string;
avatar?: string;
createdAt: string;
updatedAt: string;
}