| 1234567891011121314151617181920212223242526272829303132 | 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;}
 |