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