SyVehicleForbidenTaskMapper.xml 13.2 KB
<?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.objecteye.mapper.SyVehicleForbidenTaskMapper">
    <resultMap id="BaseResultMap" type="com.objecteye.entity.SyVehicleForbidenTask">
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="area_id" jdbcType="VARCHAR" property="areaId"/>
        <result column="name" jdbcType="VARCHAR" property="name"/>
        <result column="description" jdbcType="VARCHAR" property="description"/>
        <result column="device_id" jdbcType="VARCHAR" property="deviceId"/>
        <result column="vehicle_type" jdbcType="VARCHAR" property="vehicleType"/>
        <result column="forbidden_detail_time" jdbcType="VARCHAR" property="forbiddenDetailTime"/>
        <result column="effect_start_time" jdbcType="BIGINT" property="effectStartTime"/>
        <result column="effect_end_time" jdbcType="BIGINT" property="effectEndTime"/>
        <result column="status" jdbcType="INTEGER" property="status"/>
    </resultMap>
    <sql id="Example_Where_Clause">
        <where>
            <foreach collection="oredCriteria" item="criteria" separator="or">
                <if test="criteria.valid">
                    <trim prefix="(" prefixOverrides="and" suffix=")">
                        <foreach collection="criteria.criteria" item="criterion">
                            <choose>
                                <when test="criterion.noValue">
                                    and ${criterion.condition}
                                </when>
                                <when test="criterion.singleValue">
                                    and ${criterion.condition} #{criterion.value}
                                </when>
                                <when test="criterion.betweenValue">
                                    and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
                                </when>
                                <when test="criterion.listValue">
                                    and ${criterion.condition}
                                    <foreach close=")" collection="criterion.value" item="listItem" open="("
                                             separator=",">
                                        #{listItem}
                                    </foreach>
                                </when>
                            </choose>
                        </foreach>
                    </trim>
                </if>
            </foreach>
        </where>
    </sql>
    <sql id="Update_By_Example_Where_Clause">
        <where>
            <foreach collection="example.oredCriteria" item="criteria" separator="or">
                <if test="criteria.valid">
                    <trim prefix="(" prefixOverrides="and" suffix=")">
                        <foreach collection="criteria.criteria" item="criterion">
                            <choose>
                                <when test="criterion.noValue">
                                    and ${criterion.condition}
                                </when>
                                <when test="criterion.singleValue">
                                    and ${criterion.condition} #{criterion.value}
                                </when>
                                <when test="criterion.betweenValue">
                                    and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
                                </when>
                                <when test="criterion.listValue">
                                    and ${criterion.condition}
                                    <foreach close=")" collection="criterion.value" item="listItem" open="("
                                             separator=",">
                                        #{listItem}
                                    </foreach>
                                </when>
                            </choose>
                        </foreach>
                    </trim>
                </if>
            </foreach>
        </where>
    </sql>
    <sql id="Base_Column_List">
        id, area_id, name, description, device_id, vehicle_type, forbidden_detail_time, effect_start_time, effect_end_time,
    status
    </sql>
    <select id="selectByExample" parameterType="com.objecteye.entity.SyVehicleForbidenTaskExample"
            resultMap="BaseResultMap">
        select
        <if test="distinct">
            distinct
        </if>
        <include refid="Base_Column_List"/>
        from sy_vehicle_forbiden_task
        <if test="_parameter != null">
            <include refid="Example_Where_Clause"/>
        </if>
        <if test="orderByClause != null">
            order by ${orderByClause}
        </if>
    </select>
    <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from sy_vehicle_forbiden_task
        where id = #{id,jdbcType=INTEGER}
    </select>
    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
        delete
        from sy_vehicle_forbiden_task
        where id = #{id,jdbcType=INTEGER}
    </delete>
    <delete id="deleteByExample" parameterType="com.objecteye.entity.SyVehicleForbidenTaskExample">
        delete from sy_vehicle_forbiden_task
        <if test="_parameter != null">
            <include refid="Example_Where_Clause"/>
        </if>
    </delete>
    <insert id="insert" parameterType="com.objecteye.entity.SyVehicleForbidenTask">
        <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
            SELECT LAST_INSERT_ID()
        </selectKey>
        insert into sy_vehicle_forbiden_task (area_id, name, description, device_id, vehicle_type,
        forbidden_detail_time, effect_start_time, effect_end_time,
        status)
        values (#{areaId,jdbcType=VARCHAR},#{name,jdbcType=VARCHAR},#{description,jdbcType=VARCHAR},
        #{deviceId,jdbcType=VARCHAR}, #{vehicleType,jdbcType=VARCHAR},
        #{forbiddenDetailTime,jdbcType=VARCHAR}, #{effectStartTime,jdbcType=BIGINT}, #{effectEndTime,jdbcType=BIGINT},
        #{status,jdbcType=INTEGER})
    </insert>
    <insert id="insertSelective" parameterType="com.objecteye.entity.SyVehicleForbidenTask">
        <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
            SELECT LAST_INSERT_ID()
        </selectKey>
        insert into sy_vehicle_forbiden_task
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="areaId != null">
                area_id,
            </if>
            <if test="name != null">
                name,
            </if>
            <if test="description != null">
                description,
            </if>
            <if test="deviceId != null">
                device_id,
            </if>
            <if test="vehicleType != null">
                vehicle_type,
            </if>
            <if test="forbiddenDetailTime != null">
                forbidden_detail_time,
            </if>
            <if test="effectStartTime != null">
                effect_start_time,
            </if>
            <if test="effectEndTime != null">
                effect_end_time,
            </if>
            <if test="status != null">
                status,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="areaId != null">
                #{areaId,jdbcType=VARCHAR},
            </if>
            <if test="name != null">
                #{name,jdbcType=VARCHAR},
            </if>
            <if test="description != null">
                #{description,jdbcType=VARCHAR},
            </if>
            <if test="deviceId != null">
                #{deviceId,jdbcType=VARCHAR},
            </if>
            <if test="vehicleType != null">
                #{vehicleType,jdbcType=VARCHAR},
            </if>
            <if test="forbiddenDetailTime != null">
                #{forbiddenDetailTime,jdbcType=VARCHAR},
            </if>
            <if test="effectStartTime != null">
                #{effectStartTime,jdbcType=BIGINT},
            </if>
            <if test="effectEndTime != null">
                #{effectEndTime,jdbcType=BIGINT},
            </if>
            <if test="status != null">
                #{status,jdbcType=INTEGER},
            </if>
        </trim>
    </insert>
    <select id="countByExample" parameterType="com.objecteye.entity.SyVehicleForbidenTaskExample"
            resultType="java.lang.Integer">
        select count(*) from sy_vehicle_forbiden_task
        <if test="_parameter != null">
            <include refid="Example_Where_Clause"/>
        </if>
    </select>
    <update id="updateByExampleSelective" parameterType="map">
        update sy_vehicle_forbiden_task
        <set>
            <if test="record.id != null">
                id = #{record.id,jdbcType=INTEGER},
            </if>
            <if test="record.areaId != null">
                area_id = #{record.areaId,jdbcType=VARCHAR},
            </if>
            <if test="record.name != null">
                name = #{record.name,jdbcType=VARCHAR},
            </if>
            <if test="record.description != null">
                description = #{record.description,jdbcType=VARCHAR},
            </if>
            <if test="record.deviceId != null">
                device_id = #{record.deviceId,jdbcType=VARCHAR},
            </if>
            <if test="record.vehicleType != null">
                vehicle_type = #{record.vehicleType,jdbcType=VARCHAR},
            </if>
            <if test="record.forbiddenDetailTime != null">
                forbidden_detail_time = #{record.forbiddenDetailTime,jdbcType=VARCHAR},
            </if>
            <if test="record.effectStartTime != null">
                effect_start_time = #{record.effectStartTime,jdbcType=BIGINT},
            </if>
            <if test="record.effectEndTime != null">
                effect_end_time = #{record.effectEndTime,jdbcType=BIGINT},
            </if>
            <if test="record.status != null">
                status = #{record.status,jdbcType=INTEGER},
            </if>
        </set>
        <if test="_parameter != null">
            <include refid="Update_By_Example_Where_Clause"/>
        </if>
    </update>
    <update id="updateByExample" parameterType="map">
        update sy_vehicle_forbiden_task
        set id = #{record.id,jdbcType=INTEGER},
        area_id = #{record.areaId,jdbcType=VARCHAR},
        name = #{record.name,jdbcType=VARCHAR},
        description = #{record.description,jdbcType=VARCHAR},
        device_id = #{record.deviceId,jdbcType=VARCHAR},
        vehicle_type = #{record.vehicleType,jdbcType=VARCHAR},
        forbidden_detail_time = #{record.forbiddenDetailTime,jdbcType=VARCHAR},
        effect_start_time = #{record.effectStartTime,jdbcType=BIGINT},
        effect_end_time = #{record.effectEndTime,jdbcType=BIGINT},
        status = #{record.status,jdbcType=INTEGER}
        <if test="_parameter != null">
            <include refid="Update_By_Example_Where_Clause"/>
        </if>
    </update>
    <update id="updateByPrimaryKeySelective" parameterType="com.objecteye.entity.SyVehicleForbidenTask">
        update sy_vehicle_forbiden_task
        <set>
            <if test="areaId != null">
                area_id = #{areaId,jdbcType=VARCHAR},
            </if>
            <if test="name != null">
                name = #{name,jdbcType=VARCHAR},
            </if>
            <if test="description != null">
                description = #{description,jdbcType=VARCHAR},
            </if>
            <if test="deviceId != null">
                device_id = #{deviceId,jdbcType=VARCHAR},
            </if>
            <if test="vehicleType != null">
                vehicle_type = #{vehicleType,jdbcType=VARCHAR},
            </if>
            <if test="forbiddenDetailTime != null">
                forbidden_detail_time = #{forbiddenDetailTime,jdbcType=VARCHAR},
            </if>
            <if test="effectStartTime != null">
                effect_start_time = #{effectStartTime,jdbcType=BIGINT},
            </if>
            <if test="effectEndTime != null">
                effect_end_time = #{effectEndTime,jdbcType=BIGINT},
            </if>
            <if test="status != null">
                status = #{status,jdbcType=INTEGER},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>
    <update id="updateByPrimaryKey" parameterType="com.objecteye.entity.SyVehicleForbidenTask">
        update sy_vehicle_forbiden_task
        set area_id               = #{areaId,jdbcType=VARCHAR},
            name                  = #{name,jdbcType=VARCHAR},
            description           = #{description,jdbcType=VARCHAR},
            device_id             = #{deviceId,jdbcType=VARCHAR},
            vehicle_type          = #{vehicleType,jdbcType=VARCHAR},
            forbidden_detail_time = #{forbiddenDetailTime,jdbcType=VARCHAR},
            effect_start_time     = #{effectStartTime,jdbcType=BIGINT},
            effect_end_time       = #{effectEndTime,jdbcType=BIGINT},
            status                = #{status,jdbcType=INTEGER}
        where id = #{id,jdbcType=INTEGER}
    </update>
</mapper>