Community list

This commit is contained in:
saplf
2019-09-04 15:15:40 +08:00
parent ff5a431f43
commit 254cc52585
8 changed files with 400 additions and 96 deletions

View File

@@ -210,6 +210,35 @@ export interface Journal {
timestamp: string;
}
export interface CommunityBasic {
/**
* 累计奖励总额的数字
*/
rewardAll: string;
/**
* 直接邀请人数
*/
followerNumber: string;
/**
* 社区总人数
*/
communeNumber: string;
}
export interface Inviter {
id: string;
avatar: string;
nickname: string;
registryTime: string;
}
export type Inviters = Inviter[];
export enum MarketEstateAvailable {
No = 0,
Yes = 1,