| 1234567891011121314151617181920212223242526272829303132333435 |
- export interface OnlinePersonListReply{
- list?:Array<OnlinePersonInfo>;
- }
- export interface OnlinePersonInfo{
- /** 查询目标的ID */
- personID?:string;
- /** 类型 */
- personType?:string;
- /** 昵称 */
- nickname?:string;
- /** 头像链接 */
- avatarUrl?:string;
- /** 性别 */
- sex?:number;
- /** 年龄 */
- age?:number;
- /** 星座 */
- constellation?:string;
- /** 签名 */
- signature?:string;
- /** 省 */
- province?:string;
- /** 市 */
- city?:string;
- /** 区 */
- area?:string;
- }
- export interface CheckUserPartnerIsRelationshipReply{
- isBuildRelationship?:boolean;
- roomId?:number;
- }
- export interface CreateUserPartnerIsRelationshipReply{
- roomId?:number;
- }
|