jimu-decompiled/sources/com/ubt/jimu/base/entities/ReqSaveUserPactInfo.java
2025-05-13 19:24:51 +02:00

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