You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
pocketcommunityweb/src/app/interface/Info.ts

19 lines
356 B

// 用户信息
export interface Info {
// 用户名
username: string;
// 信用分
creditScore: number;
// 头像
headImg: string;
// 最近发帖数
recentPosts: number;
// 最近访客数
recentVisitors: number;
// 手机号
mobie: string;
// 邮箱
email: string;
// 信用分历史记录
scoreHistory: Array<number>;
}