This commit is contained in:
zlzw 2023-10-20 18:07:39 +08:00
parent 0b28dd94d1
commit 0935f76bac

View File

@ -204,7 +204,7 @@ public class IMLoginModel extends BaseModel {
@SerializedName("votes") @SerializedName("votes")
private String votes; private String votes;
@SerializedName("yuanbao") @SerializedName("yuanbao")
private long yuanbao; private String yuanbao;
@SerializedName("list") @SerializedName("list")
private List<List<ListModel>> list; private List<List<ListModel>> list;
@SerializedName("slide") @SerializedName("slide")
@ -859,11 +859,11 @@ public class IMLoginModel extends BaseModel {
return this; return this;
} }
public long getYuanbao() { public String getYuanbao() {
return yuanbao; return yuanbao;
} }
public IMLoginModel setYuanbao(long yuanbao) { public IMLoginModel setYuanbao(String yuanbao) {
this.yuanbao = yuanbao; this.yuanbao = yuanbao;
return this; return this;
} }