export interface PartnerInfo{ /** id */ id?:string; /** 昵称 */ nickname?:string; /** 头像链接 */ avatarUrl?:string; /** 年龄 */ age?:number; /** 性别 */ sex?:number; /** 星座 */ constellation?:string; /** 等级 */ level?:number; /** 标签 */ tagList?:Array; /** 签名 */ signature?:string; /** 介绍语音 */ introduceVoice?:string; /** 省 */ province?:string; /** 市 */ city?:string; /** 区 */ area?:string; } export interface PartnerMessage{ /** id */ id?:string; /** 看过我的数量 */ lookNum?:number; /** 未读的看过我的数量 */ lookUnreadNum?:number; /** 今日接待人数 */ todayReceptionNum?:number; /** 五分钟的回复率 */ reversionRate?:string; } export interface PartnerBalance{ /** id */ id?:string; /** 可提现余额 */ balance?:number; /** 今日收益 */ todayProfit?:number; } export interface RandomPartnerInfo{ /** id */ id?:string; /** 昵称 */ nickname?:string; /** 头像链接 */ avatarUrl?:string; /** 性别 */ sex?:number; } export interface GetRandomPartnerRequest{ /** 性别 */ sex?:number; }