153 lines
5.4 KiB
XML
153 lines
5.4 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.MntServerMapper">
|
|
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.MntServer">
|
|
<id column="server_id" jdbcType="BIGINT" property="serverId" />
|
|
<result column="account" jdbcType="VARCHAR" property="account" />
|
|
<result column="ip" jdbcType="VARCHAR" property="ip" />
|
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
|
<result column="password" jdbcType="VARCHAR" property="password" />
|
|
<result column="port" jdbcType="INTEGER" property="port" />
|
|
<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">
|
|
server_id, account, ip, name, password, port, create_by, update_by, create_time,
|
|
update_time
|
|
</sql>
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from mnt_server
|
|
where server_id = #{serverId,jdbcType=BIGINT}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
delete from mnt_server
|
|
where server_id = #{serverId,jdbcType=BIGINT}
|
|
</delete>
|
|
<insert id="insert" parameterType="com.chaozhanggui.system.cashierservice.entity.MntServer">
|
|
insert into mnt_server (server_id, account, ip,
|
|
name, password, port,
|
|
create_by, update_by, create_time,
|
|
update_time)
|
|
values (#{serverId,jdbcType=BIGINT}, #{account,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR},
|
|
#{name,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{port,jdbcType=INTEGER},
|
|
#{createBy,jdbcType=VARCHAR}, #{updateBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
|
|
#{updateTime,jdbcType=TIMESTAMP})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.chaozhanggui.system.cashierservice.entity.MntServer">
|
|
insert into mnt_server
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="serverId != null">
|
|
server_id,
|
|
</if>
|
|
<if test="account != null">
|
|
account,
|
|
</if>
|
|
<if test="ip != null">
|
|
ip,
|
|
</if>
|
|
<if test="name != null">
|
|
name,
|
|
</if>
|
|
<if test="password != null">
|
|
password,
|
|
</if>
|
|
<if test="port != null">
|
|
port,
|
|
</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="serverId != null">
|
|
#{serverId,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="account != null">
|
|
#{account,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="ip != null">
|
|
#{ip,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="name != null">
|
|
#{name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="password != null">
|
|
#{password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="port != null">
|
|
#{port,jdbcType=INTEGER},
|
|
</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.MntServer">
|
|
update mnt_server
|
|
<set>
|
|
<if test="account != null">
|
|
account = #{account,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="ip != null">
|
|
ip = #{ip,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="name != null">
|
|
name = #{name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="password != null">
|
|
password = #{password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="port != null">
|
|
port = #{port,jdbcType=INTEGER},
|
|
</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 server_id = #{serverId,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.chaozhanggui.system.cashierservice.entity.MntServer">
|
|
update mnt_server
|
|
set account = #{account,jdbcType=VARCHAR},
|
|
ip = #{ip,jdbcType=VARCHAR},
|
|
name = #{name,jdbcType=VARCHAR},
|
|
password = #{password,jdbcType=VARCHAR},
|
|
port = #{port,jdbcType=INTEGER},
|
|
create_by = #{createBy,jdbcType=VARCHAR},
|
|
update_by = #{updateBy,jdbcType=VARCHAR},
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
|
where server_id = #{serverId,jdbcType=BIGINT}
|
|
</update>
|
|
</mapper> |