Browse Source

报销开发

anderx 2 years ago
parent
commit
29818fab1e

+ 1 - 0
src/main/java/com/goafanti/common/mapper/ExpenseAccountMapper.xml

@@ -424,6 +424,7 @@
   <select id="selectExpenseAccountList" resultType="com.goafanti.expenseAccount.bo.OutExpenseAccountBo">
     select a.id,a.total_amount totalAmount,a.`type`,a.process_status processStatus,a.type_other typeOther,
     a.attachment_url attachmentUrl,a.target_type targetType , e.contract_no contractNo,tm.buyer_name buyerName ,
+    a.secondary_type secondaryType, a.secondary_type_other secondaryTypeOther,
     <if test="processStatus ==1">
       eae.type eaeType,
     </if>

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

@@ -7,6 +7,8 @@ public class OutExpenseAccountBo {
     private BigDecimal totalAmount;
     private Integer type;
     private String typeOther;
+    private Integer secondaryType;
+    private Integer secondaryTypeOther;
     private Integer processStatus;
     private Integer eaeType;
     private String examineName;
@@ -25,6 +27,23 @@ public class OutExpenseAccountBo {
     private String attachmentUrl;
     private Integer examine;
 
+
+    public Integer getSecondaryType() {
+        return secondaryType;
+    }
+
+    public void setSecondaryType(Integer secondaryType) {
+        this.secondaryType = secondaryType;
+    }
+
+    public Integer getSecondaryTypeOther() {
+        return secondaryTypeOther;
+    }
+
+    public void setSecondaryTypeOther(Integer secondaryTypeOther) {
+        this.secondaryTypeOther = secondaryTypeOther;
+    }
+
     public String getCheckNo() {
         return checkNo;
     }