<?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.panzhihua.service_community.dao.ComActEasyPhotoEvaluateMapper">
|
|
<resultMap type="com.panzhihua.service_community.entity.ComActEasyPhotoEvaluate" id="ComActEasyPhotoEvaluateMap">
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
<result property="communityId" column="community_id" jdbcType="INTEGER"/>
|
<result property="serviceId" column="service_id" jdbcType="INTEGER"/>
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
<result property="score" column="score" jdbcType="INTEGER"/>
|
<result property="content" column="content" jdbcType="VARCHAR"/>
|
<result property="createAt" column="create_at" jdbcType="TIMESTAMP"/>
|
<result property="serviceType" column="service_type" jdbcType="INTEGER"/>
|
</resultMap>
|
|
<!--查询单个-->
|
<select id="queryById" resultMap="ComActEasyPhotoEvaluateMap">
|
select
|
id, community_id, service_id, user_id, score, content, create_at, service_type
|
from com_act_easy_photo_evaluate
|
where id = #{id}
|
</select>
|
|
<!--查询指定行数据-->
|
<select id="queryAllByLimit" resultMap="ComActEasyPhotoEvaluateMap">
|
select
|
id, community_id, service_id, user_id, score, content, create_at, service_type
|
from com_act_easy_photo_evaluate
|
<where>
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.communityId != null">
|
and community_id = #{dto.communityId}
|
</if>
|
<if test="dto.serviceId != null">
|
and service_id = #{dto.serviceId}
|
</if>
|
<if test="dto.userId != null">
|
and user_id = #{dto.userId}
|
</if>
|
<if test="dto.score != null">
|
and score = #{dto.score}
|
</if>
|
<if test="dto.content != null and dto.content != ''">
|
and content = #{dto.content}
|
</if>
|
<if test="dto.createAt != null">
|
and create_at = #{dto.createAt}
|
</if>
|
<if test="dto.serviceType != null">
|
and service_type = #{dto.serviceType}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
<!--查询所有数据-->
|
<select id="queryAllByList" resultMap="ComActEasyPhotoEvaluateMap">
|
select
|
id, community_id, service_id, user_id, score, content, create_at, service_type
|
from com_act_easy_photo_evaluate
|
<where>
|
<if test="dto.id != null">
|
and id = #{dto.id}
|
</if>
|
<if test="dto.communityId != null">
|
and community_id = #{dto.communityId}
|
</if>
|
<if test="dto.serviceId != null">
|
and service_id = #{dto.serviceId}
|
</if>
|
<if test="dto.userId != null">
|
and user_id = #{dto.userId}
|
</if>
|
<if test="dto.score != null">
|
and score = #{dto.score}
|
</if>
|
<if test="dto.content != null and dto.content != ''">
|
and content = #{dto.content}
|
</if>
|
<if test="dto.createAt != null">
|
and create_at = #{dto.createAt}
|
</if>
|
<if test="dto.serviceType != null">
|
and service_type = #{dto.serviceType}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
|
</mapper>
|