Files
2026-03-27 17:31:52 +08:00

12 lines
310 B
TypeScript

/** 云集合 `users` 文档(与小程序云开发方案 §3.5 对齐) */
export interface UserRecord {
_id: string;
openid: string;
unionid?: string | null;
nickName?: string | null;
avatarUrl?: string | null;
totalDownloads: number;
createdAt: Date;
lastActiveAt: Date;
}