95 lines
3.9 KiB
XML
95 lines
3.9 KiB
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.cyx.web.base.mapper.TAmentTradeMapper">
|
|
|
|
<resultMap type="TAmentTrade" id="TAmentTradeResult">
|
|
<result property="id" column="id" />
|
|
<result property="tradeCount" column="trade_count" />
|
|
<result property="tradeMony" column="trade_mony" />
|
|
<result property="tradeType" column="trade_type" />
|
|
<result property="type" column="type" />
|
|
<result property="monthOf" column="month_of" />
|
|
</resultMap>
|
|
|
|
<sql id="selectTAmentTradeVo">
|
|
select id, trade_count, trade_mony, trade_type, type, month_of from t_ament_trade
|
|
</sql>
|
|
|
|
<select id="selectTAmentTradeList" parameterType="TAmentTrade" resultMap="TAmentTradeResult">
|
|
<include refid="selectTAmentTradeVo"/>
|
|
<where>
|
|
<if test="tradeCount != null "> and trade_count = #{tradeCount}</if>
|
|
<if test="tradeMony != null "> and trade_mony = #{tradeMony}</if>
|
|
<if test="tradeType != null and tradeType != ''"> and trade_type = #{tradeType}</if>
|
|
<if test="type != null and type != ''"> and type = #{type}</if>
|
|
<if test="monthOf != null and monthOf != ''"> and month_of = #{monthOf}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectTAmentTradeById" parameterType="Long" resultMap="TAmentTradeResult">
|
|
<include refid="selectTAmentTradeVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<select id="tradeEcharts" resultType="map">
|
|
SELECT
|
|
month_of 'month',
|
|
type,
|
|
ROUND( sum( trade_mony ), 4 ) trade,
|
|
SUM( trade_count ) count,
|
|
GROUP_CONCAT( '{"label":"', trade_type, '","trade":', trade_mony, ',"count":', trade_count, '}' ) json
|
|
FROM
|
|
t_ament_trade
|
|
WHERE
|
|
month_of LIKE CONCAT( '%', DATE_FORMAT( NOW(), '%Y' ), '%' )
|
|
GROUP BY
|
|
month_of,
|
|
type
|
|
ORDER BY
|
|
month_of DESC
|
|
</select>
|
|
|
|
<insert id="insertTAmentTrade" parameterType="TAmentTrade" useGeneratedKeys="true" keyProperty="id">
|
|
insert into t_ament_trade
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="tradeCount != null">trade_count,</if>
|
|
<if test="tradeMony != null">trade_mony,</if>
|
|
<if test="tradeType != null">trade_type,</if>
|
|
<if test="type != null">type,</if>
|
|
<if test="monthOf != null">month_of,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="tradeCount != null">#{tradeCount},</if>
|
|
<if test="tradeMony != null">#{tradeMony},</if>
|
|
<if test="tradeType != null">#{tradeType},</if>
|
|
<if test="type != null">#{type},</if>
|
|
<if test="monthOf != null">#{monthOf},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateTAmentTrade" parameterType="TAmentTrade">
|
|
update t_ament_trade
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="tradeCount != null">trade_count = #{tradeCount},</if>
|
|
<if test="tradeMony != null">trade_mony = #{tradeMony},</if>
|
|
<if test="tradeType != null">trade_type = #{tradeType},</if>
|
|
<if test="type != null">type = #{type},</if>
|
|
<if test="monthOf != null">month_of = #{monthOf},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteTAmentTradeById" parameterType="Long">
|
|
delete from t_ament_trade where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteTAmentTradeByIds" parameterType="String">
|
|
delete from t_ament_trade where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
|
|
</mapper> |