21 lines
706 B
XML
21 lines
706 B
XML
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
<!DOCTYPE mapper
|
||
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
<mapper namespace="com.ruoyi.app.system.mapper.ChatMapper">
|
||
|
<select id="pyline" resultType="com.ruoyi.app.system.domain.ChatDomain">
|
||
|
SELECT SUM(money) AS total_money, month, kind
|
||
|
FROM accounttb
|
||
|
WHERE `month` IS NOT NULL
|
||
|
<if test="Year != null">
|
||
|
AND `year` = #{Year}
|
||
|
</if>
|
||
|
<if test="startMonth != null and endMonth != null">
|
||
|
AND `month` BETWEEN #{startMonth} AND #{endMonth}
|
||
|
</if>
|
||
|
GROUP BY month, kind
|
||
|
ORDER BY month;
|
||
|
</select>
|
||
|
|
||
|
</mapper>
|