v1.0-2
修复支付链接问题 修复动态进个人主页无法聊一聊问题 修复支付页面【充值未到账】位置错误问题
This commit is contained in:
@@ -8,6 +8,13 @@ public class AnchorStartLiveBean extends BaseModel{
|
||||
private String anchorName;
|
||||
private String avatar;
|
||||
private String roomId;
|
||||
private int type;
|
||||
private String targetId;
|
||||
private String content;
|
||||
|
||||
public AnchorStartLiveBean(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getAnchorName() {
|
||||
return anchorName;
|
||||
@@ -32,4 +39,28 @@ public class AnchorStartLiveBean extends BaseModel{
|
||||
public void setRoomId(String roomId) {
|
||||
this.roomId = roomId;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getTargetId() {
|
||||
return targetId;
|
||||
}
|
||||
|
||||
public void setTargetId(String targetId) {
|
||||
this.targetId = targetId;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user