Browse Source

报销详情抵扣显示BUG修复

anderx 2 years ago
parent
commit
dd6119cf39

+ 10 - 0
src/main/java/com/goafanti/expenseAccount/bo/OutExpenseAccountBo.java

@@ -6,6 +6,7 @@ public class OutExpenseAccountBo {
     private Integer id;
     private BigDecimal totalAmount;
     private Integer type;
+    private String typeOther;
     private Integer processStatus;
     private Integer eaeType;
     private String examineName;
@@ -22,6 +23,15 @@ public class OutExpenseAccountBo {
     private String financeName;
     private String attachmentUrl;
 
+
+    public String getTypeOther() {
+        return typeOther;
+    }
+
+    public void setTypeOther(String typeOther) {
+        this.typeOther = typeOther;
+    }
+
     public String getAttachmentUrl() {
         return attachmentUrl;
     }