blob: 2a07e7a31c56ae3c5e2fdd2d1dc4af096ef8baa7 [file] [log] [blame]
// data.ts 建议的类型定义
export interface GetInviteCodeResponse {
code: number;
msg: string;
data: string; // 邀请码字符串
}
export interface GetUserByInviteCodeResponse {
code: number;
msg: string;
data: number; // 用户ID
}