Quellcode durchsuchen

新增报销查询编号字段。
新增、详情、修改、列表修改。
新增根据报销查询编号查询接口。

anderx vor 2 Jahren
Ursprung
Commit
63dbd7c514

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

@@ -376,7 +376,7 @@
 
   <select id="selectExpenseAccountList" resultType="com.goafanti.expenseAccount.bo.OutExpenseAccountBo">
     select a.id,a.total_amount totalAmount,a.`type`,a.process_status processStatus,a.status,a.examine_name examineName,a.type_other typeOther,
-    a.attachment_url attachmentUrl,a.target_type targetType , e.contract_no contractNo,tm.buyer_name buyerName ,
+    a.attachment_url attachmentUrl,a.target_type targetType , e.contract_no contractNo,tm.buyer_name buyerName ,a.check_no checkNo,
     <if test="processStatus ==1">
       eae.type eaeType,
     </if>

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

@@ -18,12 +18,21 @@ public class OutExpenseAccountBo {
     private Integer targetType;
 
     private String contractNo;
+    private String checkNo;
     private String buyerName;
     private String depName;
     private String financeName;
     private String attachmentUrl;
     private Integer examine;
 
+    public String getCheckNo() {
+        return checkNo;
+    }
+
+    public void setCheckNo(String checkNo) {
+        this.checkNo = checkNo;
+    }
+
     public Integer getExamine() {
         return examine;
     }