[Modify]降回trtc和私聊功能

This commit is contained in:
wushaocheng
2023-02-24 11:09:00 +08:00
parent 5a5a8f0031
commit 49092dcaae
6 changed files with 12 additions and 11 deletions

View File

@@ -4,16 +4,17 @@ import lombok.Data;
@Data
public class HallListInfo {
private Long hallId;
private long hallId;
private String hallName;
private Long clanId;
private long clanId;
private int roleType;
private Long ownerUid;
private long ownerUid;
private String ownerNick;
private String ownerAvatar;
private Integer memberCount;
private Long ownerErbanNo;
private long ownerErbanNo;
private Double roomIncome;
private int hallBtnStatus;//0=不显示 1=可申请 2=待审核 3通过邀请
private int hallRecordId;//通过邀请时的邀请记录id
private long hallMessageUid;//联系人id
}

View File

@@ -61,6 +61,7 @@ public class SearchRoomInfo extends RoomInfo implements Parcelable, MultiItemEnt
private int hallBtnStatus;//0不显示4可邀请5待通过6通过申请
private int hallRecordId;//当hallBtnStatus=6时返回申请记录Id
private long hallMessageUid;//联系人id
public SearchRoomInfo() {
}
@@ -80,7 +81,7 @@ public class SearchRoomInfo extends RoomInfo implements Parcelable, MultiItemEnt
hallBtnStatus = in.readInt();
hallRecordId = in.readInt();
hallMessageUid = in.readLong();
}
@@ -99,7 +100,7 @@ public class SearchRoomInfo extends RoomInfo implements Parcelable, MultiItemEnt
dest.writeInt(hallBtnStatus);
dest.writeInt(hallRecordId);
dest.writeLong(hallMessageUid);
}
public String getNick() {