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

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

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