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