Community list
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user