vite.api.vo.ContractInfo Maven / Gradle / Ivy
The newest version!
package vite.api.vo;
public class ContractInfo {
private String code; // online code
private String gid;
private int confirmTime;
private int seedCount;
private int quotaRatio;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getGid() {
return gid;
}
public void setGid(String gid) {
this.gid = gid;
}
public int getConfirmTime() {
return confirmTime;
}
public void setConfirmTime(int confirmTime) {
this.confirmTime = confirmTime;
}
public int getSeedCount() {
return seedCount;
}
public void setSeedCount(int seedCount) {
this.seedCount = seedCount;
}
public int getQuotaRatio() {
return quotaRatio;
}
public void setQuotaRatio(int quotaRatio) {
this.quotaRatio = quotaRatio;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy