Files
cashier-client/src/main/resources/mapper/MntDatabaseMapper.xml
韩鹏辉 b96a251fd8 提交
2024-03-21 10:17:54 +08:00

141 lines
5.1 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="com.chaozhanggui.system.cashierservice.dao.MntDatabaseMapper">
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.MntDatabase">
<id column="db_id" jdbcType="VARCHAR" property="dbId" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="jdbc_url" jdbcType="VARCHAR" property="jdbcUrl" />
<result column="user_name" jdbcType="VARCHAR" property="userName" />
<result column="pwd" jdbcType="VARCHAR" property="pwd" />
<result column="create_by" jdbcType="VARCHAR" property="createBy" />
<result column="update_by" jdbcType="VARCHAR" property="updateBy" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<sql id="Base_Column_List">
db_id, name, jdbc_url, user_name, pwd, create_by, update_by, create_time, update_time
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from mnt_database
where db_id = #{dbId,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
delete from mnt_database
where db_id = #{dbId,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.chaozhanggui.system.cashierservice.entity.MntDatabase">
insert into mnt_database (db_id, name, jdbc_url,
user_name, pwd, create_by,
update_by, create_time, update_time
)
values (#{dbId,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{jdbcUrl,jdbcType=VARCHAR},
#{userName,jdbcType=VARCHAR}, #{pwd,jdbcType=VARCHAR}, #{createBy,jdbcType=VARCHAR},
#{updateBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert id="insertSelective" parameterType="com.chaozhanggui.system.cashierservice.entity.MntDatabase">
insert into mnt_database
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="dbId != null">
db_id,
</if>
<if test="name != null">
name,
</if>
<if test="jdbcUrl != null">
jdbc_url,
</if>
<if test="userName != null">
user_name,
</if>
<if test="pwd != null">
pwd,
</if>
<if test="createBy != null">
create_by,
</if>
<if test="updateBy != null">
update_by,
</if>
<if test="createTime != null">
create_time,
</if>
<if test="updateTime != null">
update_time,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="dbId != null">
#{dbId,jdbcType=VARCHAR},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="jdbcUrl != null">
#{jdbcUrl,jdbcType=VARCHAR},
</if>
<if test="userName != null">
#{userName,jdbcType=VARCHAR},
</if>
<if test="pwd != null">
#{pwd,jdbcType=VARCHAR},
</if>
<if test="createBy != null">
#{createBy,jdbcType=VARCHAR},
</if>
<if test="updateBy != null">
#{updateBy,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
<if test="updateTime != null">
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.chaozhanggui.system.cashierservice.entity.MntDatabase">
update mnt_database
<set>
<if test="name != null">
name = #{name,jdbcType=VARCHAR},
</if>
<if test="jdbcUrl != null">
jdbc_url = #{jdbcUrl,jdbcType=VARCHAR},
</if>
<if test="userName != null">
user_name = #{userName,jdbcType=VARCHAR},
</if>
<if test="pwd != null">
pwd = #{pwd,jdbcType=VARCHAR},
</if>
<if test="createBy != null">
create_by = #{createBy,jdbcType=VARCHAR},
</if>
<if test="updateBy != null">
update_by = #{updateBy,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if test="updateTime != null">
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where db_id = #{dbId,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.chaozhanggui.system.cashierservice.entity.MntDatabase">
update mnt_database
set name = #{name,jdbcType=VARCHAR},
jdbc_url = #{jdbcUrl,jdbcType=VARCHAR},
user_name = #{userName,jdbcType=VARCHAR},
pwd = #{pwd,jdbcType=VARCHAR},
create_by = #{createBy,jdbcType=VARCHAR},
update_by = #{updateBy,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where db_id = #{dbId,jdbcType=VARCHAR}
</update>
</mapper>