All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mappers.DataNodeEntityMapper.xml Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements. See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership. The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License. You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied. See the License for the
    specific language governing permissions and limitations
    under the License.
-->

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.apache.inlong.manager.dao.mapper.DataNodeEntityMapper">
    <resultMap id="BaseResultMap" type="org.apache.inlong.manager.dao.entity.DataNodeEntity">
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="name" jdbcType="VARCHAR" property="name"/>
        <result column="type" jdbcType="VARCHAR" property="type"/>
        <result column="url" jdbcType="VARCHAR" property="url"/>
        <result column="username" jdbcType="VARCHAR" property="username"/>
        <result column="token" jdbcType="VARCHAR" property="token"/>
        <result column="ext_params" jdbcType="LONGVARCHAR" property="extParams"/>
        <result column="in_charges" jdbcType="VARCHAR" property="inCharges"/>
        <result column="status" jdbcType="INTEGER" property="status"/>
        <result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
        <result column="creator" jdbcType="VARCHAR" property="creator"/>
        <result column="modifier" jdbcType="VARCHAR" property="modifier"/>
        <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
        <result column="modify_time" jdbcType="TIMESTAMP" property="modifyTime"/>
    </resultMap>
    <sql id="Base_Column_List">
        id, name, type, url, username, token, ext_params, in_charges, status, is_deleted,
        creator, modifier, create_time, modify_time
    </sql>

    <insert id="insert" useGeneratedKeys="true" keyProperty="id"
            parameterType="org.apache.inlong.manager.dao.entity.DataNodeEntity">
        insert into data_node (id, name, type,
                               url, username, token,
                               in_charges, status, is_deleted,
                               creator, modifier, create_time,
                               modify_time, ext_params)
        values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR},
                #{url,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, #{token,jdbcType=VARCHAR},
                #{inCharges,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, #{isDeleted,jdbcType=INTEGER},
                #{creator,jdbcType=VARCHAR}, #{modifier,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
                #{modifyTime,jdbcType=TIMESTAMP}, #{extParams,jdbcType=LONGVARCHAR})
    </insert>

    <select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from data_node
        where id = #{id,jdbcType=INTEGER}
    </select>
    <select id="selectByNameAndType" resultType="org.apache.inlong.manager.dao.entity.DataNodeEntity">
        select
        <include refid="Base_Column_List"/>
        from data_node
        where is_deleted = 0
        and name = #{name, jdbcType=VARCHAR}
        and type = #{type, jdbcType=VARCHAR}
    </select>
    <select id="selectByCondition"
            parameterType="org.apache.inlong.manager.common.pojo.node.DataNodePageRequest"
            resultType="org.apache.inlong.manager.dao.entity.DataNodeEntity">
        select
        <include refid="Base_Column_List"/>
        from data_node
        <where>
            is_deleted = 0
            <if test="name != null and name != ''">
                and name = #{name, jdbcType=VARCHAR}
            </if>
            <if test="type != null and type != ''">
                and type = #{type, jdbcType=VARCHAR}
            </if>
            <if test="keyword != null and keyword != ''">
                name like CONCAT('%', #{keyword}, '%')
                or type like CONCAT('%', #{keyword}, '%')
                or url like CONCAT('%', #{keyword}, '%')
                )
            </if>
            <if test="status != null and status != ''">
                and status = #{status, jdbcType=INTEGER}
            </if>
        </where>
        order by modify_time desc
    </select>
    <update id="updateById" parameterType="org.apache.inlong.manager.dao.entity.DataNodeEntity">
        update data_node
        set name        = #{name,jdbcType=VARCHAR},
            type        = #{type,jdbcType=VARCHAR},
            url         = #{url,jdbcType=VARCHAR},
            username    = #{username,jdbcType=VARCHAR},
            token       = #{token,jdbcType=VARCHAR},
            ext_params  = #{extParams,jdbcType=LONGVARCHAR},
            in_charges  = #{inCharges,jdbcType=VARCHAR},
            status      = #{status,jdbcType=INTEGER},
            is_deleted  = #{isDeleted,jdbcType=INTEGER},
            creator     = #{creator,jdbcType=VARCHAR},
            modifier    = #{modifier,jdbcType=VARCHAR},
            create_time = #{createTime,jdbcType=TIMESTAMP},
            modify_time = #{modifyTime,jdbcType=TIMESTAMP}
        where id = #{id,jdbcType=INTEGER}
    </update>
    <update id="updateByIdSelective" parameterType="org.apache.inlong.manager.dao.entity.DataNodeEntity">
        update data_node
        <set>
            <if test="name != null">
                name = #{name,jdbcType=VARCHAR},
            </if>
            <if test="type != null">
                type = #{type,jdbcType=VARCHAR},
            </if>
            <if test="url != null">
                url = #{url,jdbcType=VARCHAR},
            </if>
            <if test="username != null">
                username = #{username,jdbcType=VARCHAR},
            </if>
            <if test="token != null">
                token = #{token,jdbcType=VARCHAR},
            </if>
            <if test="inCharges != null">
                in_charges = #{inCharges,jdbcType=VARCHAR},
            </if>
            <if test="status != null">
                status = #{status,jdbcType=INTEGER},
            </if>
            <if test="isDeleted != null">
                is_deleted = #{isDeleted,jdbcType=INTEGER},
            </if>
            <if test="creator != null">
                creator = #{creator,jdbcType=VARCHAR},
            </if>
            <if test="modifier != null">
                modifier = #{modifier,jdbcType=VARCHAR},
            </if>
            <if test="createTime != null">
                create_time = #{createTime,jdbcType=TIMESTAMP},
            </if>
            <if test="modifyTime != null">
                modify_time = #{modifyTime,jdbcType=TIMESTAMP},
            </if>
            <if test="extParams != null">
                ext_params = #{extParams,jdbcType=LONGVARCHAR},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>

    <delete id="deleteById" parameterType="java.lang.Integer">
        delete
        from data_node
        where id = #{id,jdbcType=INTEGER}
    </delete>
</mapper>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy