瀏覽代碼

fix 题目列表

he2802 3 年之前
父節點
當前提交
fe308c14bc

+ 5 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/pay/bo/PayPayeeAisleQueryBo.java

@@ -57,4 +57,9 @@ public class PayPayeeAisleQueryBo extends BaseEntity {
 	@Excel(name = "1 扫码支付  2刷卡支付 3现金支付 4转账")
 	@ApiModelProperty("1 扫码支付  2刷卡支付 3现金支付 4转账")
 	private Integer typeStatus;
+
+
+	/** 收款方名称 */
+	@ApiModelProperty("收款方名称")
+	private String payeeName;
 }

+ 3 - 0
zhongzheng-system/src/main/resources/mapper/modules/pay/PayPayeeAisleMapper.xml

@@ -47,6 +47,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <if test="accountId != null and accountId != ''">
             AND p.account_id = #{accountId}
         </if>
+        <if test="payeeName != null and payeeName != ''">
+            AND y.payee_name  like concat('%', #{payeeName}, '%')
+        </if>
     </select>
 
 </mapper>