forked from ps2hc5nfx/youxi
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.
84 lines
3.2 KiB
84 lines
3.2 KiB
2 years ago
|
<?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.ischoolbar.programmer.dao.common.CommentDao">
|
||
|
<resultMap id="commentResultMap" type="com.ischoolbar.programmer.entity.common.Comment">
|
||
|
<id column="c_id" property="id" />
|
||
|
<result column="c_productId" property="productId" />
|
||
|
<result column="c_userId" property="userId" />
|
||
|
<result column="c_type" property="type" />
|
||
|
<result column="c_content" property="content" />
|
||
|
<result column="c_createTime" property="createTime" />
|
||
|
<association property="product" javaType="com.ischoolbar.programmer.entity.common.Product">
|
||
|
<id column="p_id" property="id" />
|
||
|
<result column="p_name" property="name" />
|
||
|
<result column="p_imageUrl" property="imageUrl" />
|
||
|
<result column="p_price" property="price" />
|
||
|
</association>
|
||
|
<association property="account" javaType="com.ischoolbar.programmer.entity.common.Account">
|
||
|
<id column="a_id" property="id" />
|
||
|
<result column="a_name" property="name" />
|
||
|
</association>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
<!-- 评论插入操作 -->
|
||
|
<insert id="add" parameterType="com.ischoolbar.programmer.entity.common.Comment">
|
||
|
insert into comment(id,productId,userId,type,content,createTime) values(null,#{productId},#{userId},#{type},#{content},#{createTime})
|
||
|
</insert>
|
||
|
<!-- 评论更新操作 -->
|
||
|
<update id="edit" parameterType="com.ischoolbar.programmer.entity.common.Comment">
|
||
|
update comment set type = #{type},content = #{content} where id = #{id}
|
||
|
</update>
|
||
|
<!-- 评论信息搜索查询 -->
|
||
|
<select id="findList" parameterType="Map" resultMap="commentResultMap">
|
||
|
select
|
||
|
c.id as c_id,c.productId as c_productId,c.userId as c_userId,c.type as c_type,c.content as c_content,c.createTime as c_createTime,
|
||
|
p.id as p_id,p.name as p_name,p.imageUrl as p_imageUrl,p.price as p_price,
|
||
|
a.id as a_id,a.name as a_name
|
||
|
from comment c,product p,account a where c.productId = p.id and c.userId = a.id
|
||
|
<if test="productName != null">
|
||
|
and p.name like '%${productName}%'
|
||
|
</if>
|
||
|
<if test="productId != null">
|
||
|
and p.id = #{productId}
|
||
|
</if>
|
||
|
<if test="username != null">
|
||
|
and a.name like '%${username}%'
|
||
|
</if>
|
||
|
<if test="userId != null">
|
||
|
and c.userId = #{userId}
|
||
|
</if>
|
||
|
<if test="type != null">
|
||
|
and c.type = #{type}
|
||
|
</if>
|
||
|
<if test="orderBy != null and sort != null">
|
||
|
order by ${orderBy} ${sort}
|
||
|
</if>
|
||
|
<if test="offset != null and pageSize != null">
|
||
|
limit #{offset},#{pageSize}
|
||
|
</if>
|
||
|
</select>
|
||
|
<!-- 模糊搜索总条数 -->
|
||
|
<select id="getTotal" parameterType="Map" resultType="Integer">
|
||
|
select count(*) from comment c,product p,account a where c.productId = p.id and c.userId = a.id
|
||
|
<if test="productName != null">
|
||
|
and p.name like '%${productId}%'
|
||
|
</if>
|
||
|
<if test="username != null">
|
||
|
and a.name like '%${username}%'
|
||
|
</if>
|
||
|
<if test="type != null">
|
||
|
and c.type = #{type}
|
||
|
</if>
|
||
|
</select>
|
||
|
<!-- 根据id查询 -->
|
||
|
<select id="findById" parameterType="Long" resultType="com.ischoolbar.programmer.entity.common.Comment">
|
||
|
select * from comment where id = #{value}
|
||
|
</select>
|
||
|
<!-- 删除评论信息 -->
|
||
|
<delete id="delete" parameterType="String">
|
||
|
delete from comment where id in(${value})
|
||
|
</delete>
|
||
|
</mapper>
|