86 lines
4.2 KiB
XML
86 lines
4.2 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.ruoyi.system.mapper.AsdArticleCommentsMapper">
|
|
|
|
<resultMap type="AsdArticleComments" id="AsdArticleCommentsResult">
|
|
<result property="id" column="id" />
|
|
<result property="userId" column="user_id" />
|
|
<result property="floor" column="floor" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="fullName" column="full_name" />
|
|
<result property="articleId" column="article_id" />
|
|
<result property="content" column="content" />
|
|
<result property="more" column="more" />
|
|
</resultMap>
|
|
|
|
<sql id="selectAsdArticleCommentsVo">
|
|
select id, user_id, floor, create_time, full_name, article_id, content, more from asd_article_comment
|
|
</sql>
|
|
|
|
<select id="selectAsdArticleCommentsList" parameterType="AsdArticleComments" resultMap="AsdArticleCommentsResult">
|
|
<include refid="selectAsdArticleCommentsVo"/>
|
|
<where>
|
|
<if test="userId != null "> and user_id = #{userId}</if>
|
|
<if test="floor != null "> and floor = #{floor}</if>
|
|
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> and create_time between #{params.beginCreateTime} and #{params.endCreateTime}</if>
|
|
<if test="fullName != null and fullName != ''"> and full_name like concat('%', #{fullName}, '%')</if>
|
|
<if test="articleId != null "> and article_id = #{articleId}</if>
|
|
<if test="content != null and content != ''"> and content like concat('%', #{content}, '%')</if>
|
|
<if test="more != null and more != ''"> and more = #{more}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectAsdArticleCommentsById" parameterType="String" resultMap="AsdArticleCommentsResult">
|
|
<include refid="selectAsdArticleCommentsVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertAsdArticleComments" parameterType="AsdArticleComments" useGeneratedKeys="true" keyProperty="id">
|
|
insert into asd_article_comment
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="userId != null">user_id,</if>
|
|
<if test="floor != null">floor,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="fullName != null">full_name,</if>
|
|
<if test="articleId != null">article_id,</if>
|
|
<if test="content != null">content,</if>
|
|
<if test="more != null">more,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="userId != null">#{userId},</if>
|
|
<if test="floor != null">#{floor},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="fullName != null">#{fullName},</if>
|
|
<if test="articleId != null">#{articleId},</if>
|
|
<if test="content != null">#{content},</if>
|
|
<if test="more != null">#{more},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateAsdArticleComments" parameterType="AsdArticleComments">
|
|
update asd_article_comment
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="userId != null">user_id = #{userId},</if>
|
|
<if test="floor != null">floor = #{floor},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="fullName != null">full_name = #{fullName},</if>
|
|
<if test="articleId != null">article_id = #{articleId},</if>
|
|
<if test="content != null">content = #{content},</if>
|
|
<if test="more != null">more = #{more},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteAsdArticleCommentsById" parameterType="String">
|
|
delete from asd_article_comment where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteAsdArticleCommentsByIds" parameterType="String">
|
|
delete from asd_article_comment where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper> |