| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | export interface ChatCardInfo{    /**  id */    id?:string;    /**  昵称 */    nickname?:string;    /**  头像链接 */    avatarUrl?:string;    /**  性别 */    sex?:number;    /**  年龄 */    age?:number;    /**  星座 */    constellation?:string;    /**  引导语 */    introduction?:string;    /**  介绍语音 */    introduceVoice?:string;    /**  省 */    province?:string;    /**  市 */    city?:string;    /**  区 */    area?:string;}export interface InformationStatus{    /** 是否完善资料 */    isFinishInformation?:boolean;    /**  是否领取奖励 */    isGetAward?:boolean;}export interface UserBalance{    /**  id */    id?:string;    /**  积分 */    credit?:number;}export interface UserFindChatListReply{    list?:Array<UserChatInfo>;    nextId?:number;}export interface UserChatInfo{    /**  用户ID */    personId?:string;    /**  用户未读数 */    unreadNum?:number;    /**  上次发送内容 */    lastContent?:string;    /**  上次发送时间 */    lastTime?:number;    /**  好感度 */    likeability?:number;    /**  性别 */    sex?:number;    /**  头像 */    avatarUrl?:string;    /**  昵称 */    nickname?:string;    /**  年龄 */    age?:number;    /**  房间号ID */    roomId?:number;}export interface UserInfo{    /**  id */    id?:string;    /**  昵称 */    nickname?:string;    /**  头像链接 */    avatarUrl?:string;    /**  年龄 */    age?:number;    /**  性别 */    sex?:number;    /**  星座 */    constellation?:string;    /**  积分 */    credit?:number;    /**  标签 */    tagList?:Array<number>;    /**  签名 */    signature?:string;    /**  介绍语音 */    introduceVoice?:string;    /**  省 */    province?:string;    /**  市 */    city?:string;    /**  区 */    area?:string;}export interface KeyRequest{    key?:string;}
 |