[Modify]降回trtc和私聊功能
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
@@ -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() {
|
||||
|
Reference in New Issue
Block a user