Sfoglia il codice sorgente

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

mashengyi 3 anni fa
parent
commit
aee33115c7
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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>