vite.api.vo.ContractInput Maven / Gradle / Ivy
The newest version!
package vite.api.vo;
public class ContractInput {
private String hexCode; // compiler code
private String gid;
private int confirmTime;
private int seedCount;
private int quotaRatio;
private String params;
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;
}
public String getHexCode() {
return hexCode;
}
public void setHexCode(String hexCode) {
this.hexCode = hexCode;
}
public String getParams() {
return params;
}
public void setParams(String params) {
this.params = params;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy