根据需求调整送过一次联系方式礼物后,以后点击联系方式都是直接打开信件详情

This commit is contained in:
2023-04-11 14:37:39 +08:00
parent b305ba925b
commit cfc72f7441
3 changed files with 69 additions and 14 deletions

View File

@@ -29,6 +29,7 @@ public class BannerBean {
private String wishlistProgress;
@SerializedName("wishlist_name")
private String wishlistName;
private Object data;//用来存储任意bean
public String getmImageUrl() {
return mImageUrl;
@@ -189,6 +190,14 @@ public class BannerBean {
this.mIconRes = mIconRes;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
@NonNull
@Override
public String toString() {

View File

@@ -26,10 +26,30 @@ public class LiveAnchorCallMeModel extends BaseModel {
private AppBean line;
@SerializedName("whatsApp")
private AppBean whatsApp;
@SerializedName("isGet")
private int isGet;
@SerializedName("link")
private String link;
public LiveAnchorCallMeModel() {
}
public int getIsGet() {
return isGet;
}
public void setIsGet(int isGet) {
this.isGet = isGet;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
public int getId() {
return id;
}
@@ -114,6 +134,8 @@ public class LiveAnchorCallMeModel extends BaseModel {
", wechat=" + wechat +
", line=" + line +
", whatsApp=" + whatsApp +
", isGet=" + isGet +
", link='" + link + '\'' +
'}';
}