浏览代码

20220410-余额预警停用账户不展示

mashengyi 3 年之前
父节点
当前提交
aee33115c7
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/main/resources/mapper/customer/CustomerMapper.xml

+ 4 - 0
src/main/resources/mapper/customer/CustomerMapper.xml

@@ -82,6 +82,8 @@
         and  t.account_balance>=#{customer.moneyLower}
       </if>
     </where>
+     <!-- 正常用户 -->
+       and  accStatus = 0
     order by first_sign desc
   </select>
 
@@ -99,6 +101,8 @@
         and  #{customer.moneyUpper} <![CDATA[>=]]> t.account_balance
         and  t.account_balance  <![CDATA[<=]]>  #{customer.moneyLower}
     </where>
+    <!-- 正常用户 -->
+    and  accStatus = 0
     order by first_sign desc
   </select>