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

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

parent 87df04cc
...@@ -19,15 +19,18 @@ public class WagesConversionData { ...@@ -19,15 +19,18 @@ public class WagesConversionData {
private String yearMonth; private String yearMonth;
private String value;
@Override @Override
public String toString() { public String toString() {
return "WagesConversionData{" + return "WagesConversionData{" +
"id='" + id + '\'' + "id=" + id +
", jsonData=" + jsonData + ", jsonData='" + jsonData + '\'' +
", ifGenerateVoucher='" + ifGenerateVoucher + '\'' + ", ifGenerateVoucher='" + ifGenerateVoucher + '\'' +
", createTime=" + createTime + ", createTime=" + createTime +
", updateTime=" + updateTime + ", updateTime=" + updateTime +
", yearMonth='" + yearMonth + '\'' + ", yearMonth='" + yearMonth + '\'' +
", value='" + value + '\'' +
'}'; '}';
} }
...@@ -78,4 +81,12 @@ public class WagesConversionData { ...@@ -78,4 +81,12 @@ public class WagesConversionData {
public void setYearMonth(String yearMonth) { public void setYearMonth(String yearMonth) {
this.yearMonth = 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