Guwan-smartSchool/shapelight-admin/src/main/resources/mapper/ten/TenCarDao.xml

232 lines
8.0 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="net.shapelight.modules.ten.dao.TenCarDao">
<!-- 可根据自己的需求,是否要使用 -->
<resultMap type="net.shapelight.modules.ten.entity.TenCarEntity" id="tenCarMap">
<result property="carId" column="car_id"/>
<result property="vlp" column="vlp"/>
<result property="picture" column="picture"/>
<result property="cTypeName" column="c_type_name"/>
<result property="vTypeName" column="v_type_name"/>
<result property="vehicleName" column="vehicle_name"/>
<result property="certificate" column="certificate"/>
<result property="telephone" column="telephone"/>
<result property="registerTime" column="register_time"/>
<result property="refundTime" column="refund_time"/>
<result property="color" column="color"/>
<result property="parkName" column="park_name"/>
<result property="startTime" column="start_time"/>
<result property="endTime" column="end_time"/>
<result property="personId" column="person_id"/>
<result property="cellId" column="cell_id"/>
</resultMap>
<insert id="insert" parameterType="net.shapelight.modules.ten.entity.TenCarEntity">
insert into ten_car
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="carId != null">
car_id,
</if>
<if test="vlp != null">
vlp,
</if>
<if test="picture != null">
picture,
</if>
<if test="cTypeName != null">
c_type_name,
</if>
<if test="vTypeName != null">
v_type_name,
</if>
<if test="vehicleName != null">
vehicle_name,
</if>
<if test="certificate != null">
certificate,
</if>
<if test="telephone != null">
telephone,
</if>
<if test="registerTime != null">
register_time,
</if>
<if test="refundTime != null">
refund_time,
</if>
<if test="color != null">
color,
</if>
<if test="parkName != null">
park_name,
</if>
<if test="startTime != null">
start_time,
</if>
<if test="endTime != null">
end_time,
</if>
<if test="personId != null">
person_id,
</if>
<if test="cellId != null">
cell_id,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="carId != null">
#{carId,jdbcType=BIGINT},
</if>
<if test="vlp != null">
#{vlp,jdbcType=VARCHAR},
</if>
<if test="picture != null">
#{picture,jdbcType=VARCHAR},
</if>
<if test="cTypeName != null">
#{cTypeName,jdbcType=VARCHAR},
</if>
<if test="vTypeName != null">
#{vTypeName,jdbcType=VARCHAR},
</if>
<if test="vehicleName != null">
#{vehicleName,jdbcType=VARCHAR},
</if>
<if test="certificate != null">
#{certificate,jdbcType=VARCHAR},
</if>
<if test="telephone != null">
#{telephone,jdbcType=VARCHAR},
</if>
<if test="registerTime != null">
#{registerTime,jdbcType=TIMESTAMP},
</if>
<if test="refundTime != null">
#{refundTime,jdbcType=TIMESTAMP},
</if>
<if test="color != null">
#{color,jdbcType=VARCHAR},
</if>
<if test="parkName != null">
#{parkName,jdbcType=VARCHAR},
</if>
<if test="startTime != null">
#{startTime,jdbcType=TIMESTAMP},
</if>
<if test="endTime != null">
#{endTime,jdbcType=TIMESTAMP},
</if>
<if test="personId != null">
#{personId,jdbcType=BIGINT},
</if>
<if test="cellId != null">
#{cellId,jdbcType=BIGINT},
</if>
</trim>
</insert>
<delete id="deleteById" parameterType="java.lang.Long">
delete from ten_car
where car_id = #{carId,jdbcType=BIGINT}
</delete>
<update id="updateById" parameterType="net.shapelight.modules.ten.entity.TenCarEntity">
update ten_car
<set>
<if test="carId != null">
car_id = #{carId,jdbcType=BIGINT},
</if>
<if test="vlp != null">
vlp = #{vlp,jdbcType=VARCHAR},
</if>
<if test="picture != null">
picture = #{picture,jdbcType=VARCHAR},
</if>
<if test="cTypeName != null">
c_type_name = #{cTypeName,jdbcType=VARCHAR},
</if>
<if test="vTypeName != null">
v_type_name = #{vTypeName,jdbcType=VARCHAR},
</if>
<if test="vehicleName != null">
vehicle_name = #{vehicleName,jdbcType=VARCHAR},
</if>
<if test="certificate != null">
certificate = #{certificate,jdbcType=VARCHAR},
</if>
<if test="telephone != null">
telephone = #{telephone,jdbcType=VARCHAR},
</if>
<if test="registerTime != null">
register_time = #{registerTime,jdbcType=TIMESTAMP},
</if>
<if test="refundTime != null">
refund_time = #{refundTime,jdbcType=TIMESTAMP},
</if>
<if test="color != null">
color = #{color,jdbcType=VARCHAR},
</if>
<if test="parkName != null">
park_name = #{parkName,jdbcType=VARCHAR},
</if>
<if test="startTime != null">
start_time = #{startTime,jdbcType=TIMESTAMP},
</if>
<if test="endTime != null">
end_time = #{endTime,jdbcType=TIMESTAMP},
</if>
<if test="personId != null">
person_id = #{personId,jdbcType=BIGINT},
</if>
<if test="cellId != null">
cell_id = #{cellId,jdbcType=BIGINT},
</if>
</set>
where car_id = #{carId,jdbcType=BIGINT}
</update>
<select id="selectById" parameterType="java.lang.Long" resultMap="tenCarMap">
select * from ten_car
where car_id = #{carId,jdbcType=BIGINT}
and cellId = #{cellId}
</select>
<select id="selectByVlp" resultMap="tenCarMap">
select * from ten_car
where vlp = #{vlp}
and cellId = #{cellId}
</select>
<select id="findPageAll" resultMap="tenCarMap">
<!--SELECT alias.* from (-->
<!--<foreach collection="cellIds" item="item" index="index" separator="union all">-->
<!--select * from ten_car_${item}-->
<!--</foreach>-->
<!--) alias where 1 = 1-->
<!--<if test="params.plate != null and params.plate!=''">-->
<!--and vlp like CONCAT('%', '${params.plate}', '%')-->
<!--</if>-->
<!--order by alias.register_time desc-->
select * from ten_car
where 1 = 1
<if test="params.plate != null and params.plate!=''">
and vlp like CONCAT('%', '${params.plate}', '%')
</if>
<if test="cellIds != null">
and cell_id in
<foreach item="cellId" collection="cellIds" open="(" separator="," close=")">
#{cellId}
</foreach>
</if>
order by register_time desc
</select>
</mapper>