<?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.jsh.erp.datasource.mappers.LogMapper">
|
<resultMap id="BaseResultMap" type="com.jsh.erp.datasource.entities.Log">
|
<id column="id" jdbcType="BIGINT" property="id" />
|
<result column="user_id" jdbcType="BIGINT" property="userId" />
|
<result column="operation" jdbcType="VARCHAR" property="operation" />
|
<result column="client_ip" jdbcType="VARCHAR" property="clientIp" />
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
<result column="status" jdbcType="TINYINT" property="status" />
|
<result column="content" jdbcType="VARCHAR" property="content" />
|
<result column="tenant_id" jdbcType="BIGINT" property="tenantId" />
|
</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, user_id, operation, client_ip, create_time, status, content, tenant_id
|
</sql>
|
<select id="selectByExample" parameterType="com.jsh.erp.datasource.entities.LogExample" resultMap="BaseResultMap">
|
select
|
<if test="distinct">
|
distinct
|
</if>
|
<include refid="Base_Column_List" />
|
from jsh_log
|
<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.Long" resultMap="BaseResultMap">
|
select
|
<include refid="Base_Column_List" />
|
from jsh_log
|
where id = #{id,jdbcType=BIGINT}
|
</select>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
delete from jsh_log
|
where id = #{id,jdbcType=BIGINT}
|
</delete>
|
<delete id="deleteByExample" parameterType="com.jsh.erp.datasource.entities.LogExample">
|
delete from jsh_log
|
<if test="_parameter != null">
|
<include refid="Example_Where_Clause" />
|
</if>
|
</delete>
|
<insert id="insert" parameterType="com.jsh.erp.datasource.entities.Log">
|
insert into jsh_log (id, user_id, operation,
|
client_ip, create_time, status,
|
content, tenant_id)
|
values (#{id,jdbcType=BIGINT}, #{userId,jdbcType=BIGINT}, #{operation,jdbcType=VARCHAR},
|
#{clientIp,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{status,jdbcType=TINYINT},
|
#{content,jdbcType=VARCHAR}, #{tenantId,jdbcType=BIGINT})
|
</insert>
|
<insert id="insertSelective" parameterType="com.jsh.erp.datasource.entities.Log">
|
insert into jsh_log
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
id,
|
</if>
|
<if test="userId != null">
|
user_id,
|
</if>
|
<if test="operation != null">
|
operation,
|
</if>
|
<if test="clientIp != null">
|
client_ip,
|
</if>
|
<if test="createTime != null">
|
create_time,
|
</if>
|
<if test="status != null">
|
status,
|
</if>
|
<if test="content != null">
|
content,
|
</if>
|
<if test="tenantId != null">
|
tenant_id,
|
</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
#{id,jdbcType=BIGINT},
|
</if>
|
<if test="userId != null">
|
#{userId,jdbcType=BIGINT},
|
</if>
|
<if test="operation != null">
|
#{operation,jdbcType=VARCHAR},
|
</if>
|
<if test="clientIp != null">
|
#{clientIp,jdbcType=VARCHAR},
|
</if>
|
<if test="createTime != null">
|
#{createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="status != null">
|
#{status,jdbcType=TINYINT},
|
</if>
|
<if test="content != null">
|
#{content,jdbcType=VARCHAR},
|
</if>
|
<if test="tenantId != null">
|
#{tenantId,jdbcType=BIGINT},
|
</if>
|
</trim>
|
</insert>
|
<select id="countByExample" parameterType="com.jsh.erp.datasource.entities.LogExample" resultType="java.lang.Long">
|
select count(*) from jsh_log
|
<if test="_parameter != null">
|
<include refid="Example_Where_Clause" />
|
</if>
|
</select>
|
<update id="updateByExampleSelective" parameterType="map">
|
update jsh_log
|
<set>
|
<if test="record.id != null">
|
id = #{record.id,jdbcType=BIGINT},
|
</if>
|
<if test="record.userId != null">
|
user_id = #{record.userId,jdbcType=BIGINT},
|
</if>
|
<if test="record.operation != null">
|
operation = #{record.operation,jdbcType=VARCHAR},
|
</if>
|
<if test="record.clientIp != null">
|
client_ip = #{record.clientIp,jdbcType=VARCHAR},
|
</if>
|
<if test="record.createTime != null">
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="record.status != null">
|
status = #{record.status,jdbcType=TINYINT},
|
</if>
|
<if test="record.content != null">
|
content = #{record.content,jdbcType=VARCHAR},
|
</if>
|
<if test="record.tenantId != null">
|
tenant_id = #{record.tenantId,jdbcType=BIGINT},
|
</if>
|
</set>
|
<if test="_parameter != null">
|
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
</update>
|
<update id="updateByExample" parameterType="map">
|
update jsh_log
|
set id = #{record.id,jdbcType=BIGINT},
|
user_id = #{record.userId,jdbcType=BIGINT},
|
operation = #{record.operation,jdbcType=VARCHAR},
|
client_ip = #{record.clientIp,jdbcType=VARCHAR},
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
status = #{record.status,jdbcType=TINYINT},
|
content = #{record.content,jdbcType=VARCHAR},
|
tenant_id = #{record.tenantId,jdbcType=BIGINT}
|
<if test="_parameter != null">
|
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
</update>
|
<update id="updateByPrimaryKeySelective" parameterType="com.jsh.erp.datasource.entities.Log">
|
update jsh_log
|
<set>
|
<if test="userId != null">
|
user_id = #{userId,jdbcType=BIGINT},
|
</if>
|
<if test="operation != null">
|
operation = #{operation,jdbcType=VARCHAR},
|
</if>
|
<if test="clientIp != null">
|
client_ip = #{clientIp,jdbcType=VARCHAR},
|
</if>
|
<if test="createTime != null">
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="status != null">
|
status = #{status,jdbcType=TINYINT},
|
</if>
|
<if test="content != null">
|
content = #{content,jdbcType=VARCHAR},
|
</if>
|
<if test="tenantId != null">
|
tenant_id = #{tenantId,jdbcType=BIGINT},
|
</if>
|
</set>
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
<update id="updateByPrimaryKey" parameterType="com.jsh.erp.datasource.entities.Log">
|
update jsh_log
|
set user_id = #{userId,jdbcType=BIGINT},
|
operation = #{operation,jdbcType=VARCHAR},
|
client_ip = #{clientIp,jdbcType=VARCHAR},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
status = #{status,jdbcType=TINYINT},
|
content = #{content,jdbcType=VARCHAR},
|
tenant_id = #{tenantId,jdbcType=BIGINT}
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
</mapper>
|