54 lines
1.0 KiB
Java
54 lines
1.0 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ReqSaveUserPactInfo implements Serializable {
|
|
private String lan;
|
|
private String productId;
|
|
private int type;
|
|
private String version;
|
|
|
|
public ReqSaveUserPactInfo() {
|
|
}
|
|
|
|
public String getLan() {
|
|
return this.lan;
|
|
}
|
|
|
|
public String getProductId() {
|
|
return this.productId;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public String getVersion() {
|
|
return this.version;
|
|
}
|
|
|
|
public void setLan(String str) {
|
|
this.lan = str;
|
|
}
|
|
|
|
public void setProductId(String str) {
|
|
this.productId = str;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
public void setVersion(String str) {
|
|
this.version = str;
|
|
}
|
|
|
|
public ReqSaveUserPactInfo(String str, String str2, int i, String str3) {
|
|
this.lan = str;
|
|
this.productId = str2;
|
|
this.type = i;
|
|
this.version = str3;
|
|
}
|
|
}
|