128 lines
2.7 KiB
Java
128 lines
2.7 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UserPactInfo implements Serializable {
|
|
private int code;
|
|
private List<UserPactDetail> data;
|
|
private String msg;
|
|
|
|
public class UserPactDetail {
|
|
private int code;
|
|
private String lan;
|
|
private String msg;
|
|
private String productId;
|
|
private String summary;
|
|
private int type;
|
|
private String url;
|
|
private String version;
|
|
|
|
public UserPactDetail() {
|
|
}
|
|
|
|
public int getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
public String getLan() {
|
|
return this.lan;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return this.msg;
|
|
}
|
|
|
|
public String getProductId() {
|
|
return this.productId;
|
|
}
|
|
|
|
public String getSummary() {
|
|
return this.summary;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return this.url;
|
|
}
|
|
|
|
public String getVersion() {
|
|
return this.version;
|
|
}
|
|
|
|
public void setCode(int i) {
|
|
this.code = i;
|
|
}
|
|
|
|
public void setLan(String str) {
|
|
this.lan = str;
|
|
}
|
|
|
|
public void setMsg(String str) {
|
|
this.msg = str;
|
|
}
|
|
|
|
public void setProductId(String str) {
|
|
this.productId = str;
|
|
}
|
|
|
|
public void setSummary(String str) {
|
|
this.summary = str;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
public void setUrl(String str) {
|
|
this.url = str;
|
|
}
|
|
|
|
public void setVersion(String str) {
|
|
this.version = str;
|
|
}
|
|
|
|
public String toString() {
|
|
return "lan:" + this.lan + " productId:" + this.productId + " summary:" + this.summary + " type:" + this.type + " url:" + this.url + " version:" + this.version;
|
|
}
|
|
}
|
|
|
|
public int getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
public List<UserPactDetail> getData() {
|
|
return this.data;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return this.msg;
|
|
}
|
|
|
|
public void setCode(int i) {
|
|
this.code = i;
|
|
}
|
|
|
|
public void setData(List<UserPactDetail> list) {
|
|
this.data = list;
|
|
}
|
|
|
|
public void setMsg(String str) {
|
|
this.msg = str;
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuffer stringBuffer = new StringBuffer();
|
|
if (this.data != null) {
|
|
for (int i = 0; i < this.data.size(); i++) {
|
|
stringBuffer.append(this.data.get(i).toString());
|
|
}
|
|
}
|
|
return stringBuffer.toString();
|
|
}
|
|
}
|