|
@@ -38,8 +38,8 @@ public class WorkAccount extends DataEntity<WorkAccount> {
|
|
|
private String projectReportNumber;//项目报告号
|
|
|
private String officeId;//部门id
|
|
|
private String reimbursementName;//报销人
|
|
|
- private String bills;//单据数量
|
|
|
- private String evectionNumber;//出差天数
|
|
|
+ private Integer bills;//单据数量
|
|
|
+ private Double evectionNumber;//出差天数
|
|
|
private Integer projectRadio; //是否项目报销(1:项目报销 0:非项目报销)
|
|
|
private String reimburseRemarks; //非项目报销 报销详情
|
|
|
|
|
@@ -165,19 +165,19 @@ public class WorkAccount extends DataEntity<WorkAccount> {
|
|
|
this.reimbursementName = reimbursementName;
|
|
|
}
|
|
|
|
|
|
- public String getBills() {
|
|
|
+ public Integer getBills() {
|
|
|
return bills;
|
|
|
}
|
|
|
|
|
|
- public void setBills(String bills) {
|
|
|
+ public void setBills(Integer bills) {
|
|
|
this.bills = bills;
|
|
|
}
|
|
|
|
|
|
- public String getEvectionNumber() {
|
|
|
+ public Double getEvectionNumber() {
|
|
|
return evectionNumber;
|
|
|
}
|
|
|
|
|
|
- public void setEvectionNumber(String evectionNumber) {
|
|
|
+ public void setEvectionNumber(Double evectionNumber) {
|
|
|
this.evectionNumber = evectionNumber;
|
|
|
}
|
|
|
|