wuzeyu
2024-08-08 b306ba3d75769c7d3f5ae9f7b43a8aaa26ed983c
pipIrr-platform/pipIrr-global/src/main/resources/mapper/SeClientCardMapper.xml
@@ -589,13 +589,12 @@
    ORDER BY card.id
  </select>
  <!--指定时间段内开卡总数量(物理卡)-->
  <select id="getOpenCountIcCardsCount" resultType="java.lang.Long">
  <!--当前余额总量(物理卡)-->
  <select id="getTotalMoneyIcCards" resultType="java.lang.Double">
    SELECT
      count(*)
      IFNULL(SUM(money),0) AS totalMoney
    FROM
      `se_client_card`
    WHERE
      createDt BETWEEN #{timeStart} AND #{timeStop}
    </select>
    WHERE state = 1
  </select>
</mapper>