SyDeployMapper.xml 15.3 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.SyDeployMapper">
    <resultMap id="BaseResultMap" type="com.objecteye.entity.SyDeploy">
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="name" jdbcType="VARCHAR" property="name"/>
        <result column="start_time" jdbcType="VARCHAR" property="startTime"/>
        <result column="end_time" jdbcType="VARCHAR" property="endTime"/>
        <result column="thresld" jdbcType="REAL" property="thresld"/>
        <result column="description" jdbcType="VARCHAR" property="description"/>
        <result column="deploy_equip" jdbcType="VARCHAR" property="deployEquip"/>
        <result column="deploy_lib" jdbcType="VARCHAR" property="deployLib"/>
        <result column="deploy_type" jdbcType="INTEGER" property="deployType"/>
        <result column="create_date" jdbcType="VARCHAR" property="createDate"/>
        <result column="status" jdbcType="INTEGER" property="status"/>
        <result column="is_delete" jdbcType="INTEGER" property="isDelete"/>
        <result column="singleMonitor" jdbcType="INTEGER" property="singlemonitor"/>
        <result column="single_id" jdbcType="VARCHAR" property="singleId"/>
    </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, name, start_time, end_time, thresld, description, deploy_equip, deploy_lib, deploy_type,
    create_date, status, is_delete, singleMonitor, single_id
    </sql>
    <select id="selectByExample" parameterType="com.objecteye.entity.SyDeployExample" resultMap="BaseResultMap">
        select
        <if test="distinct">
            distinct
        </if>
        <include refid="Base_Column_List"/>
        from sy_deploy
        <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_deploy
        where id = #{id,jdbcType=INTEGER}
    </select>
    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
        delete
        from sy_deploy
        where id = #{id,jdbcType=INTEGER}
    </delete>
    <delete id="deleteByExample" parameterType="com.objecteye.entity.SyDeployExample">
        delete from sy_deploy
        <if test="_parameter != null">
            <include refid="Example_Where_Clause"/>
        </if>
    </delete>
    <insert id="insert" parameterType="com.objecteye.entity.SyDeploy">
        <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
            SELECT LAST_INSERT_ID()
        </selectKey>
        insert into sy_deploy (name, start_time, end_time,
        thresld, description, deploy_equip,
        deploy_lib, deploy_type, create_date,
        status, is_delete, singleMonitor,
        single_id)
        values (#{name,jdbcType=VARCHAR}, #{startTime,jdbcType=VARCHAR}, #{endTime,jdbcType=VARCHAR},
        #{thresld,jdbcType=REAL}, #{description,jdbcType=VARCHAR}, #{deployEquip,jdbcType=VARCHAR},
        #{deployLib,jdbcType=VARCHAR}, #{deployType,jdbcType=INTEGER}, #{createDate,jdbcType=VARCHAR},
        #{status,jdbcType=INTEGER}, #{isDelete,jdbcType=INTEGER}, #{singlemonitor,jdbcType=INTEGER},
        #{singleId,jdbcType=VARCHAR})
    </insert>
    <insert id="insertSelective" parameterType="com.objecteye.entity.SyDeploy">
        <selectKey keyProperty="id" order="AFTER" resultType="java.lang.Integer">
            SELECT LAST_INSERT_ID()
        </selectKey>
        insert into sy_deploy
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="name != null">
                name,
            </if>
            <if test="startTime != null">
                start_time,
            </if>
            <if test="endTime != null">
                end_time,
            </if>
            <if test="thresld != null">
                thresld,
            </if>
            <if test="description != null">
                description,
            </if>
            <if test="deployEquip != null">
                deploy_equip,
            </if>
            <if test="deployLib != null">
                deploy_lib,
            </if>
            <if test="deployType != null">
                deploy_type,
            </if>
            <if test="createDate != null">
                create_date,
            </if>
            <if test="status != null">
                status,
            </if>
            <if test="isDelete != null">
                is_delete,
            </if>
            <if test="singlemonitor != null">
                singleMonitor,
            </if>
            <if test="singleId != null">
                single_id,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="name != null">
                #{name,jdbcType=VARCHAR},
            </if>
            <if test="startTime != null">
                #{startTime,jdbcType=VARCHAR},
            </if>
            <if test="endTime != null">
                #{endTime,jdbcType=VARCHAR},
            </if>
            <if test="thresld != null">
                #{thresld,jdbcType=REAL},
            </if>
            <if test="description != null">
                #{description,jdbcType=VARCHAR},
            </if>
            <if test="deployEquip != null">
                #{deployEquip,jdbcType=VARCHAR},
            </if>
            <if test="deployLib != null">
                #{deployLib,jdbcType=VARCHAR},
            </if>
            <if test="deployType != null">
                #{deployType,jdbcType=INTEGER},
            </if>
            <if test="createDate != null">
                #{createDate,jdbcType=VARCHAR},
            </if>
            <if test="status != null">
                #{status,jdbcType=INTEGER},
            </if>
            <if test="isDelete != null">
                #{isDelete,jdbcType=INTEGER},
            </if>
            <if test="singlemonitor != null">
                #{singlemonitor,jdbcType=INTEGER},
            </if>
            <if test="singleId != null">
                #{singleId,jdbcType=VARCHAR},
            </if>
        </trim>
    </insert>
    <select id="countByExample" parameterType="com.objecteye.entity.SyDeployExample" resultType="java.lang.Integer">
        select count(*) from sy_deploy
        <if test="_parameter != null">
            <include refid="Example_Where_Clause"/>
        </if>
    </select>
    <update id="updateByExampleSelective" parameterType="map">
        update sy_deploy
        <set>
            <if test="record.id != null">
                id = #{record.id,jdbcType=INTEGER},
            </if>
            <if test="record.name != null">
                name = #{record.name,jdbcType=VARCHAR},
            </if>
            <if test="record.startTime != null">
                start_time = #{record.startTime,jdbcType=VARCHAR},
            </if>
            <if test="record.endTime != null">
                end_time = #{record.endTime,jdbcType=VARCHAR},
            </if>
            <if test="record.thresld != null">
                thresld = #{record.thresld,jdbcType=REAL},
            </if>
            <if test="record.description != null">
                description = #{record.description,jdbcType=VARCHAR},
            </if>
            <if test="record.deployEquip != null">
                deploy_equip = #{record.deployEquip,jdbcType=VARCHAR},
            </if>
            <if test="record.deployLib != null">
                deploy_lib = #{record.deployLib,jdbcType=VARCHAR},
            </if>
            <if test="record.deployType != null">
                deploy_type = #{record.deployType,jdbcType=INTEGER},
            </if>
            <if test="record.createDate != null">
                create_date = #{record.createDate,jdbcType=VARCHAR},
            </if>
            <if test="record.status != null">
                status = #{record.status,jdbcType=INTEGER},
            </if>
            <if test="record.isDelete != null">
                is_delete = #{record.isDelete,jdbcType=INTEGER},
            </if>
            <if test="record.singlemonitor != null">
                singleMonitor = #{record.singlemonitor,jdbcType=INTEGER},
            </if>
            <if test="record.singleId != null">
                single_id = #{record.singleId,jdbcType=VARCHAR},
            </if>
        </set>
        <if test="_parameter != null">
            <include refid="Update_By_Example_Where_Clause"/>
        </if>
    </update>
    <update id="updateByExample" parameterType="map">
        update sy_deploy
        set id = #{record.id,jdbcType=INTEGER},
        name = #{record.name,jdbcType=VARCHAR},
        start_time = #{record.startTime,jdbcType=VARCHAR},
        end_time = #{record.endTime,jdbcType=VARCHAR},
        thresld = #{record.thresld,jdbcType=REAL},
        description = #{record.description,jdbcType=VARCHAR},
        deploy_equip = #{record.deployEquip,jdbcType=VARCHAR},
        deploy_lib = #{record.deployLib,jdbcType=VARCHAR},
        deploy_type = #{record.deployType,jdbcType=INTEGER},
        create_date = #{record.createDate,jdbcType=VARCHAR},
        status = #{record.status,jdbcType=INTEGER},
        is_delete = #{record.isDelete,jdbcType=INTEGER},
        singleMonitor = #{record.singlemonitor,jdbcType=INTEGER},
        single_id = #{record.singleId,jdbcType=VARCHAR}
        <if test="_parameter != null">
            <include refid="Update_By_Example_Where_Clause"/>
        </if>
    </update>
    <update id="updateByPrimaryKeySelective" parameterType="com.objecteye.entity.SyDeploy">
        update sy_deploy
        <set>
            <if test="name != null">
                name = #{name,jdbcType=VARCHAR},
            </if>
            <if test="startTime != null">
                start_time = #{startTime,jdbcType=VARCHAR},
            </if>
            <if test="endTime != null">
                end_time = #{endTime,jdbcType=VARCHAR},
            </if>
            <if test="thresld != null">
                thresld = #{thresld,jdbcType=REAL},
            </if>
            <if test="description != null">
                description = #{description,jdbcType=VARCHAR},
            </if>
            <if test="deployEquip != null">
                deploy_equip = #{deployEquip,jdbcType=VARCHAR},
            </if>
            <if test="deployLib != null">
                deploy_lib = #{deployLib,jdbcType=VARCHAR},
            </if>
            <if test="deployType != null">
                deploy_type = #{deployType,jdbcType=INTEGER},
            </if>
            <if test="createDate != null">
                create_date = #{createDate,jdbcType=VARCHAR},
            </if>
            <if test="status != null">
                status = #{status,jdbcType=INTEGER},
            </if>
            <if test="isDelete != null">
                is_delete = #{isDelete,jdbcType=INTEGER},
            </if>
            <if test="singlemonitor != null">
                singleMonitor = #{singlemonitor,jdbcType=INTEGER},
            </if>
            <if test="singleId != null">
                single_id = #{singleId,jdbcType=VARCHAR},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>
    <update id="updateByPrimaryKey" parameterType="com.objecteye.entity.SyDeploy">
        update sy_deploy
        set name          = #{name,jdbcType=VARCHAR},
            start_time    = #{startTime,jdbcType=VARCHAR},
            end_time      = #{endTime,jdbcType=VARCHAR},
            thresld       = #{thresld,jdbcType=REAL},
            description   = #{description,jdbcType=VARCHAR},
            deploy_equip  = #{deployEquip,jdbcType=VARCHAR},
            deploy_lib    = #{deployLib,jdbcType=VARCHAR},
            deploy_type   = #{deployType,jdbcType=INTEGER},
            create_date   = #{createDate,jdbcType=VARCHAR},
            status        = #{status,jdbcType=INTEGER},
            is_delete     = #{isDelete,jdbcType=INTEGER},
            singleMonitor = #{singlemonitor,jdbcType=INTEGER},
            single_id     = #{singleId,jdbcType=VARCHAR}
        where id = #{id,jdbcType=INTEGER}
    </update>
</mapper>