修复支付链接问题
修复动态进个人主页无法聊一聊问题
修复支付页面【充值未到账】位置错误问题
This commit is contained in:
2023-11-10 18:12:07 +08:00
parent 37d2f0b975
commit 73cdf9ca43
3 changed files with 39 additions and 2 deletions

View File

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