浏览代码

后端代码提交

mashengyi 3 年之前
父节点
当前提交
be6a8e3b40

+ 12 - 0
src/main/java/com/jkcredit/invoice/controller/localBussiness/CustomerController.java

@@ -279,4 +279,16 @@ public class CustomerController {
         ipage.setTotal(lists.size());
         return new RespR(ipage);
     }
+    /**
+     * @param customerRec
+     * @return
+     */
+    @PostMapping("/customeRecQueryListByPage")
+    @ApiOperation(value="用户备案列表分页查询", notes="用户备案列表分页查询")
+    @LoginRequired
+    public RespR customeRecQueryListByPage(Page page, CustomerRec customerRec){
+        IPage ipage = customerRecService.findAllCustomerRec(page, customerRec);
+        return new RespR(ipage);
+    }
+
 }

+ 14 - 0
src/main/resources/mapper/customer/CustomerRecMapper.xml

@@ -41,6 +41,20 @@
     select
     <include refid="Base_Column_List" />
     from t_customer_rec
+    <where>
+    <if test="customerRec.customerName != null and customerRec.customerName != ''">
+      AND  customerName LIKE CONCAT('%',#{customerRec.customerName},'%')
+    </if>
+    <if test="customerRec.companyLeaderPhone != null and customerRec.companyLeaderPhone != ''">
+      and companyLeaderPhone = #{customerRec.companyLeaderPhone}
+    </if>
+    <if test="customerRec.companyReferencenum != null and customerRec.companyReferencenum != ''">
+      and companyReferencenum = #{customerRec.companyReferencenum}
+    </if>
+    <if test="customerRec.companyName != null and customerRec.companyName != ''">
+      and companyName = #{customerRec.companyName}
+    </if>
+    </where>
   </select>
   <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
     select