Files
wx-cashier-service/src/main/resources/mapper/ToolLocalStorageMapper.xml
韩鹏辉 b77eacdccb 提交
2024-03-21 10:22:29 +08:00

164 lines
5.9 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.ToolLocalStorageMapper">
<resultMap id="BaseResultMap" type="com.chaozhanggui.system.cashierservice.entity.ToolLocalStorage">
<id column="storage_id" jdbcType="BIGINT" property="storageId" />
<result column="real_name" jdbcType="VARCHAR" property="realName" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="suffix" jdbcType="VARCHAR" property="suffix" />
<result column="path" jdbcType="VARCHAR" property="path" />
<result column="type" jdbcType="VARCHAR" property="type" />
<result column="size" jdbcType="VARCHAR" property="size" />
<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">
storage_id, real_name, name, suffix, path, type, size, 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 tool_local_storage
where storage_id = #{storageId,jdbcType=BIGINT}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from tool_local_storage
where storage_id = #{storageId,jdbcType=BIGINT}
</delete>
<insert id="insert" parameterType="com.chaozhanggui.system.cashierservice.entity.ToolLocalStorage">
insert into tool_local_storage (storage_id, real_name, name,
suffix, path, type,
size, create_by, update_by,
create_time, update_time)
values (#{storageId,jdbcType=BIGINT}, #{realName,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{suffix,jdbcType=VARCHAR}, #{path,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR},
#{size,jdbcType=VARCHAR}, #{createBy,jdbcType=VARCHAR}, #{updateBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert id="insertSelective" parameterType="com.chaozhanggui.system.cashierservice.entity.ToolLocalStorage">
insert into tool_local_storage
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="storageId != null">
storage_id,
</if>
<if test="realName != null">
real_name,
</if>
<if test="name != null">
name,
</if>
<if test="suffix != null">
suffix,
</if>
<if test="path != null">
path,
</if>
<if test="type != null">
type,
</if>
<if test="size != null">
size,
</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="storageId != null">
#{storageId,jdbcType=BIGINT},
</if>
<if test="realName != null">
#{realName,jdbcType=VARCHAR},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="suffix != null">
#{suffix,jdbcType=VARCHAR},
</if>
<if test="path != null">
#{path,jdbcType=VARCHAR},
</if>
<if test="type != null">
#{type,jdbcType=VARCHAR},
</if>
<if test="size != null">
#{size,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.ToolLocalStorage">
update tool_local_storage
<set>
<if test="realName != null">
real_name = #{realName,jdbcType=VARCHAR},
</if>
<if test="name != null">
name = #{name,jdbcType=VARCHAR},
</if>
<if test="suffix != null">
suffix = #{suffix,jdbcType=VARCHAR},
</if>
<if test="path != null">
path = #{path,jdbcType=VARCHAR},
</if>
<if test="type != null">
type = #{type,jdbcType=VARCHAR},
</if>
<if test="size != null">
size = #{size,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 storage_id = #{storageId,jdbcType=BIGINT}
</update>
<update id="updateByPrimaryKey" parameterType="com.chaozhanggui.system.cashierservice.entity.ToolLocalStorage">
update tool_local_storage
set real_name = #{realName,jdbcType=VARCHAR},
name = #{name,jdbcType=VARCHAR},
suffix = #{suffix,jdbcType=VARCHAR},
path = #{path,jdbcType=VARCHAR},
type = #{type,jdbcType=VARCHAR},
size = #{size,jdbcType=VARCHAR},
create_by = #{createBy,jdbcType=VARCHAR},
update_by = #{updateBy,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where storage_id = #{storageId,jdbcType=BIGINT}
</update>
</mapper>