| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | export interface PartnerFindRoomListRequest{    nextId?:number;    offset?:number;    IdentifyId?:string;    /**  是否查询没回复过的内容 */    isFindNotReply?:boolean;    /**  是否在七日内 */    isWithinSevenDay?:boolean;}export interface UserFindRoomListRequest{    nextId?:number;    offset?:number;    IdentifyId?:string;    /**  是否在七日内 */    isWithinSevenDay?:boolean;}export interface UserFindRoomListReply{    list?:Array<UserRoomInfo>;    nextId?:number;}export interface UserRoomInfo{    /**  用户类型 */    personType?:string;    /**  用户ID */    personId?:string;    /**  用户未读数 */    unreadNum?:number;    /**  上次发送内容 */    lastContent?:string;    /**  上次发送时间 */    lastTime?:number;    /**  好感度 */    likeability?:number;}export interface PartnerFindRoomListReply{    list?:Array<PartnerRoomInfo>;    nextId?:number;}export interface PartnerRoomInfo{    /**  用户发送数 */    personSendNum?:number;    /**  用户ID */    personId?:string;    /**  接待者未读数 */    unreadNum?:number;    /**  上次发送内容 */    lastContent?:string;    /**  上次发送时间 */    lastTime?:number;    /**  收益 */    benefit?:number;    /**  类型(新客:new,付费:pay) */    type?:string;    /**  性别 */    sex?:number;    /**  头像 */    avatarUrl?:string;    /**  昵称 */    nickname?:string;    /**  年龄 */    age?:number;}export interface CreateChatRoomParam{    personId1?:string;    /**  身份ID */    personIdentifyID1?:string;    /**  类型 */    personType1?:string;    personId2?:string;    /**  身份ID */    personIdentifyID2?:string;    /**  类型 */    personType2?:string;}export interface ReceiveRequest{    method?:string;    data?:any;    id?:string;    websocketTag?:string;    personType?:string;    personId?:string;}export interface ReceiveReply{}export interface CheckUserPartnerIsRelationshipReply{    isBuildRelationship?:boolean;    roomId?:number;}export interface RoomReply{    roomId?:number;}export interface FindChatRoomMsgRequest{    roomId?:number;    /**  类型 */    personType?:string;    /**  查询目标的ID */    personID?:string;}export interface FindChatRecordListRequest{    nextId?:number;    offset?:number;    roomId?:number;    /**  类型 */    personType?:string;    /**  查询目标的ID */    personID?:string;}
 |