<?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.ComActEasyPhotoHandlerMapper">
|
|
<resultMap type="com.panzhihua.service_community.entity.ComActEasyPhotoHandler" id="ComActEasyPhotoHandlerMap">
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
<result property="communityId" column="community_id" jdbcType="INTEGER"/>
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
<result property="serviceId" column="service_id" jdbcType="INTEGER"/>
|
<result property="type" column="type" jdbcType="INTEGER"/>
|
<result property="serviceType" column="service_type" jdbcType="INTEGER"/>
|
</resultMap>
|
|
<!--查询单个-->
|
<select id="queryById" resultType="com.panzhihua.common.model.vos.common.ComActEasyPhotoHandlerVo">
|
select t.*,t1.name as senderName from com_act_easy_photo_handler t left join sys_user t1 on t.sender_id = t1.user_id where t.id = #{id}
|
</select>
|
|
<!--查询指定行数据-->
|
<select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.common.ComActEasyPhotoHandlerVo">
|
select
|
t.id, t.community_id, t.user_id, t.service_id, t.type, t.service_type ,t.status ,t1.name as senderName ,t.create_time
|
from com_act_easy_photo_handler t left join sys_user t1 on t.sender_id = t1.user_id
|
<where>
|
<if test="dto.id != null">
|
and t.id = #{dto.id}
|
</if>
|
<if test="dto.communityId != null">
|
and t.community_id = #{dto.communityId}
|
</if>
|
<if test="dto.userId != null">
|
and t.user_id = #{dto.userId}
|
</if>
|
<if test="dto.serviceId != null">
|
and t.service_id = #{dto.serviceId}
|
</if>
|
<if test="dto.type != null">
|
and t.type = #{dto.type}
|
</if>
|
<if test="dto.serviceType != null">
|
and t.service_type = #{dto.serviceType}
|
</if>
|
<if test="dto.status !=null">
|
and t.status = #{dto.status}
|
</if>
|
</where>
|
order by t.create_time desc
|
</select>
|
|
<!--查询所有数据-->
|
<select id="queryAllByList" resultMap="ComActEasyPhotoHandlerMap">
|
select
|
id, community_id, user_id, service_id, type, service_type
|
from com_act_easy_photo_handler
|
<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.userId != null">
|
and user_id = #{dto.userId}
|
</if>
|
<if test="dto.serviceId != null">
|
and service_id = #{dto.serviceId}
|
</if>
|
<if test="dto.type != null">
|
and type = #{dto.type}
|
</if>
|
<if test="dto.serviceType != null">
|
and service_type = #{dto.serviceType}
|
</if>
|
</where>
|
order by create_at desc
|
</select>
|
<select id="selectHandleRecord"
|
resultType="com.panzhihua.common.model.vos.common.ComActEasyPhotoHandlerVo">
|
SELECT * FROM com_act_easy_photo_handler WHERE service_id = #{serviceId} AND service_type = #{serviceType}
|
</select>
|
|
</mapper>
|