| | |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | | <select id="selectTotalTypeByUserId" resultType="java.math.BigDecimal"> |
| | | select IFNULL(sum(IFNULL(amount,0)),0) |
| | | from chat_amount_flow |
| | | where type = #{type} |
| | | and user_id = #{userId} |
| | | <if test='dateType == "D"'> |
| | | and date_format(create_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d'); |
| | | </if> |
| | | <if test='dateType == "M"'> |
| | | and date_format(create_time, '%Y-%m') = date_format(#{date}, '%Y-%m'); |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="selectUserList" resultType="cc.mrbird.febs.mall.entity.ChatUser"> |
| | | select |
| | | a.* |