| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | export interface PartnerFindRoomListRequest{    nextId?:number;    offset?:number;    IdentifyId?:string;    /**  是否查询没回复过的内容 */    isFindNotReply?:boolean;    /**  是否在七日内 */    isWithinSevenDay?:boolean;}export interface PartnerFindRoomListReply{    list?:Array<PartnerRoomInfo>;    nextId?:number;}export interface PartnerRoomInfo{    /**  用户发送数 */    personSendNum?:number;    /**  用户ID */    personId?:string;    /**  接待者未读数 */    unreadNum?:number;    /**  上次发送内容 */    lastContent?:string;    /**  上次发送时间 */    lastTime?: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;}
 |