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