Commit f5098947 authored by 刘_震's avatar 刘_震

工资-WagesConversionData-新增实体类(value)

parent 87df04cc
......@@ -18,64 +18,75 @@ public class WagesConversionData {
private Date updateTime;
private String yearMonth;
private String value;
@Override
public String toString() {
public String toString() {
return "WagesConversionData{" +
"id='" + id + '\'' +
", jsonData=" + jsonData +
"id=" + id +
", jsonData='" + jsonData + '\'' +
", ifGenerateVoucher='" + ifGenerateVoucher + '\'' +
", createTime=" + createTime +
", updateTime=" + updateTime +
", yearMonth='" + yearMonth + '\'' +
", value='" + value + '\'' +
'}';
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getJsonData() {
return jsonData;
}
public void setJsonData(String jsonData) {
this.jsonData = jsonData;
}
public String getIfGenerateVoucher() {
return ifGenerateVoucher;
}
public void setIfGenerateVoucher(String ifGenerateVoucher) {
this.ifGenerateVoucher = ifGenerateVoucher;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public String getYearMonth() {
return yearMonth;
}
public void setYearMonth(String yearMonth) {
this.yearMonth = yearMonth;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment