You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
6.0 KiB
121 lines
6.0 KiB
<?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.zc.business.mapper.DcInfoBoardTemplateMapper">
|
|
|
|
<resultMap type="com.zc.business.domain.DcInfoBoardTemplate" id="DcInfoBoardTemplateResult">
|
|
<result property="id" column="id" />
|
|
<result property="category" column="category" />
|
|
<result property="content" column="content" />
|
|
<result property="screenSize" column="screen_size" />
|
|
<result property="fontColor" column="font_color" />
|
|
<result property="fontSize" column="font_size" />
|
|
<result property="fontType" column="font_type" />
|
|
<result property="fontSpacing" column="font_spacing" />
|
|
<result property="rollingSpeed" column="rolling_speed" />
|
|
<result property="stopTime" column="stop_time" />
|
|
<result property="inScreenMode" column="in_screen_mode" />
|
|
<result property="formatStyle" column="format_style" />
|
|
<result property="remark" column="remark" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateTime" column="update_time" />
|
|
</resultMap>
|
|
|
|
<sql id="selectDcInfoBoardTemplateVo">
|
|
select id, category, content, screen_size, font_color, font_size, font_type, font_spacing, rolling_speed, stop_time,
|
|
in_screen_mode, format_style, remark, create_time, update_time
|
|
from dc_info_board_template
|
|
</sql>
|
|
|
|
<select id="selectSdVmsTemplateList" parameterType="com.zc.business.domain.DcInfoBoardTemplate" resultMap="DcInfoBoardTemplateResult">
|
|
<include refid="selectDcInfoBoardTemplateVo"/>
|
|
<where>
|
|
<if test="screenSize != null and screenSize != ''"> and screen_size = #{screenSize}</if>
|
|
<if test="category != null and category != ''"> and category = #{category}</if>
|
|
<if test="ids != null and ids != ''"> and FIND_IN_SET(id,#{ids}) > 0</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectTemplateList" resultMap="DcInfoBoardTemplateResult">
|
|
select id, category, content, screen_size, font_color, font_size, font_type, font_spacing, rolling_speed, stop_time,
|
|
in_screen_mode, format_style, remark, create_time, update_time
|
|
from dc_info_board_template
|
|
<where>
|
|
<if test="category != null and category != ''"> and category = #{category}</if>
|
|
<if test="devicePixel != null and devicePixel != ''"> and screen_size = #{devicePixel}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectSdVmsTemplateById" parameterType="Long" resultMap="DcInfoBoardTemplateResult">
|
|
<include refid="selectDcInfoBoardTemplateVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertSdVmsTemplate" parameterType="DcInfoBoardTemplate">
|
|
insert into dc_info_board_template
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="category != null">category,</if>
|
|
<if test="content != null">content,</if>
|
|
<if test="screenSize != null">screen_size,</if>
|
|
<if test="fontColor != null">font_color,</if>
|
|
<if test="fontSize != null">font_size,</if>
|
|
<if test="fontType != null">font_type,</if>
|
|
<if test="fontSpacing != null">font_spacing,</if>
|
|
<if test="rollingSpeed != null">rolling_speed,</if>
|
|
<if test="stopTime != null">stop_time,</if>
|
|
<if test="inScreenMode != null">in_screen_mode,</if>
|
|
<if test="formatStyle != null">format_style,</if>
|
|
<if test="remark != null">remark,</if>
|
|
create_time
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="category != null">#{category},</if>
|
|
<if test="content != null">#{content},</if>
|
|
<if test="screenSize != null">#{screenSize},</if>
|
|
<if test="fontColor != null">#{fontColor},</if>
|
|
<if test="fontSize != null">#{fontSize},</if>
|
|
<if test="fontType != null">#{fontType},</if>
|
|
<if test="fontSpacing != null">#{fontSpacing},</if>
|
|
<if test="rollingSpeed != null">#{rollingSpeed},</if>
|
|
<if test="stopTime != null">#{stopTime},</if>
|
|
<if test="inScreenMode != null">#{inScreenMode},</if>
|
|
<if test="formatStyle != null">#{formatStyle},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
now()
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateSdVmsTemplate" parameterType="DcInfoBoardTemplate">
|
|
update dc_info_board_template
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="category != null">category = #{category},</if>
|
|
<if test="content != null">content = #{content},</if>
|
|
<if test="screenSize != null">screen_size = #{screenSize},</if>
|
|
<if test="fontColor != null">font_color = #{fontColor},</if>
|
|
<if test="fontSize != null">font_size = #{fontSize},</if>
|
|
<if test="fontType != null">font_type = #{fontType},</if>
|
|
<if test="fontSpacing != null">font_spacing = #{fontSpacing},</if>
|
|
<if test="rollingSpeed != null">rolling_speed = #{rollingSpeed},</if>
|
|
<if test="stopTime != null">stop_time = #{stopTime},</if>
|
|
<if test="inScreenMode != null">in_screen_mode = #{inScreenMode},</if>
|
|
<if test="formatStyle != null">format_style = #{formatStyle},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
update_time = now()
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteSdVmsTemplateById" parameterType="Long">
|
|
delete from dc_info_board_template where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteSdVmsTemplateByIds" parameterType="Long">
|
|
delete from dc_info_board_template where id = #{id}
|
|
</delete>
|
|
|
|
<select id="selectSdVmsTemplateId" resultType="Long">
|
|
SELECT id from iot_board_template ORDER BY id desc LIMIT 1
|
|
</select>
|
|
|
|
</mapper>
|
|
|