From 04ed450c97c35937f9d2ac52ffad48287f0a58b9 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 02 Mar 2021 15:04:54 +0800 Subject: [PATCH] 20210321 后台数据查询修改 --- src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml b/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml index a311cc5..0993c26 100644 --- a/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml +++ b/src/main/resources/mapper/modules/ContractHoldOrderEntityMapper.xml @@ -13,6 +13,9 @@ <if test="record.account!=null and record.account!=''"> and (m.phone = #{record.account} or m.email = #{record.account} or m.invite_id=#{record.account}) </if> + <if test="record.contractType!=null and record.contractType!=''"> + and m.contract_type= #{record.contractType} + </if> <if test="record.isTest!=null and record.isTest!=''"> and m.account_type= #{record.isTest} </if> -- Gitblit v1.9.1