| | |
| | | LIMIT 1) AS subquery |
| | | ); |
| | | </update> |
| | | |
| | | |
| | | <!-- /////////////////////////////////// --> |
| | | <!-- 统计相关 --> |
| | | <!-- /////////////////////////////////// --> |
| | | <select id="statisticsByIc" resultType="com.dy.pipIrrGlobal.voSt.VoIcRechargeStatistics"> |
| | | select clientId as clientId, |
| | | cardId as cardId, |
| | | sum(amount) as amount, |
| | | sum(gift) as gift, |
| | | count(*) as times |
| | | from se_recharge_history |
| | | where operate_valid = 2 |
| | | and id <![CDATA[>=]]> #{startId, jdbcType=BIGINT} |
| | | and id <![CDATA[<]]> #{endId, jdbcType=BIGINT} |
| | | group by clientId, cardId |
| | | </select> |
| | | <select id="statisticsByClient" resultType="com.dy.pipIrrGlobal.voSt.VoClientRechargeStatistics"> |
| | | select clientId as clientId, |
| | | sum(amount) as amount, |
| | | sum(gift) as gift, |
| | | count(*) as times |
| | | from se_recharge_history |
| | | where operate_valid = 2 |
| | | and id <![CDATA[>=]]> #{startId, jdbcType=BIGINT} |
| | | and id <![CDATA[<]]> #{endId, jdbcType=BIGINT} |
| | | group by clientId |
| | | </select> |
| | | |
| | | </mapper> |