<?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.ComChangeCarInquiryMapper">
|
|
<resultMap type="com.panzhihua.service_community.entity.ComChangeCarInquiry" id="ComChangeCarInquiryMap">
|
<result property="id" column="id" jdbcType="INTEGER"/>
|
<result property="userId" column="user_id" jdbcType="INTEGER"/>
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
<result property="phone" column="phone" jdbcType="VARCHAR"/>
|
<result property="type" column="type" jdbcType="INTEGER"/>
|
<result property="isDel" column="is_del" jdbcType="INTEGER"/>
|
<result property="createAt" column="create_at" jdbcType="TIMESTAMP"/>
|
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
</resultMap>
|
|
<!--查询单个-->
|
<select id="queryById" resultType="com.panzhihua.common.model.vos.common.ComChangeCarInquiryVo">
|
SELECT
|
ccci.id,
|
ccci.user_id,
|
ccci.`name`,
|
ccci.phone,
|
ccci.type,
|
ccci.is_del,
|
ccci.create_at,
|
ccci.create_by,
|
su.`nick_name` as userName
|
FROM
|
com_change_car_inquiry as ccci
|
left join sys_user as su on su.user_id = ccci.user_id
|
where ccci.id = #{id}
|
</select>
|
|
<!--查询指定行数据-->
|
<select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.common.ComChangeCarInquiryVo">
|
SELECT
|
ccci.id,
|
ccci.user_id,
|
ccci.`name`,
|
ccci.phone,
|
ccci.type,
|
ccci.is_del,
|
ccci.create_at,
|
ccci.create_by,
|
su.`nick_name` as userName
|
FROM
|
com_change_car_inquiry as ccci
|
left join sys_user as su on su.user_id = ccci.user_id
|
<where>
|
and ccci.is_del = 2
|
<if test="dto.id != null">
|
and ccci.id = #{dto.id}
|
</if>
|
<if test="dto.userId != null">
|
and ccci.user_id = #{dto.userId}
|
</if>
|
<if test="dto.type != null">
|
and ccci.type = #{dto.type}
|
</if>
|
<if test="dto.keyWord != null and dto.keyWord != ''">
|
and (
|
ccci.`name` like concat('%',#{dto.keyWord},'%') or
|
ccci.`phone` like concat('%',#{dto.keyWord},'%') or
|
su.`nick_name` like concat('%',#{dto.keyWord},'%')
|
)
|
</if>
|
</where>
|
order by ccci.create_at desc
|
</select>
|
|
<!--查询所有数据-->
|
<select id="queryAllByList" resultType="com.panzhihua.common.model.vos.common.ComChangeCarInquiryVo">
|
SELECT
|
ccci.id,
|
ccci.user_id,
|
ccci.`name`,
|
ccci.phone,
|
ccci.type,
|
ccci.is_del,
|
ccci.create_at,
|
ccci.create_by,
|
su.`nick_name` as userName
|
FROM
|
com_change_car_inquiry as ccci
|
left join sys_user as su on su.user_id = ccci.user_id
|
<where>
|
and ccci.is_del = 2
|
<if test="dto.id != null">
|
and ccci.id = #{dto.id}
|
</if>
|
<if test="dto.userId != null">
|
and ccci.user_id = #{dto.userId}
|
</if>
|
<if test="dto.type != null">
|
and ccci.type = #{dto.type}
|
</if>
|
<if test="dto.keyWord != null and dto.keyWord != ''">
|
and (
|
ccci.`name` like concat('%',#{dto.keyWord},'%') or
|
ccci.`phone` like concat('%',#{dto.keyWord},'%') or
|
su.`nick_name` like concat('%',#{dto.keyWord},'%')
|
)
|
</if>
|
</where>
|
order by ccci.create_at desc
|
</select>
|
|
</mapper>
|