mirror of
https://github.com/201206030/novel-cloud.git
synced 2025-04-27 01:40:50 +00:00
291 lines
10 KiB
XML
291 lines
10 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.java2nb.novel.user.mapper.UserMapper">
|
|
<resultMap id="BaseResultMap" type="com.java2nb.novel.user.entity.User">
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="username" jdbcType="VARCHAR" property="username" />
|
|
<result column="password" jdbcType="VARCHAR" property="password" />
|
|
<result column="nick_name" jdbcType="VARCHAR" property="nickName" />
|
|
<result column="user_photo" jdbcType="VARCHAR" property="userPhoto" />
|
|
<result column="user_sex" jdbcType="TINYINT" property="userSex" />
|
|
<result column="account_balance" jdbcType="BIGINT" property="accountBalance" />
|
|
<result column="status" jdbcType="TINYINT" property="status" />
|
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
</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, username, password, nick_name, user_photo, user_sex, account_balance, status,
|
|
create_time, update_time
|
|
</sql>
|
|
<select id="selectByExample" parameterType="com.java2nb.novel.user.entity.UserExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from user
|
|
<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 user
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
delete from user
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="com.java2nb.novel.user.entity.UserExample">
|
|
delete from user
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="com.java2nb.novel.user.entity.User">
|
|
insert into user (id, username, password,
|
|
nick_name, user_photo, user_sex,
|
|
account_balance, status, create_time,
|
|
update_time)
|
|
values (#{id,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
|
|
#{nickName,jdbcType=VARCHAR}, #{userPhoto,jdbcType=VARCHAR}, #{userSex,jdbcType=TINYINT},
|
|
#{accountBalance,jdbcType=BIGINT}, #{status,jdbcType=TINYINT}, #{createTime,jdbcType=TIMESTAMP},
|
|
#{updateTime,jdbcType=TIMESTAMP})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.java2nb.novel.user.entity.User">
|
|
insert into user
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="username != null">
|
|
username,
|
|
</if>
|
|
<if test="password != null">
|
|
password,
|
|
</if>
|
|
<if test="nickName != null">
|
|
nick_name,
|
|
</if>
|
|
<if test="userPhoto != null">
|
|
user_photo,
|
|
</if>
|
|
<if test="userSex != null">
|
|
user_sex,
|
|
</if>
|
|
<if test="accountBalance != null">
|
|
account_balance,
|
|
</if>
|
|
<if test="status != null">
|
|
status,
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time,
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="username != null">
|
|
#{username,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="password != null">
|
|
#{password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="nickName != null">
|
|
#{nickName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="userPhoto != null">
|
|
#{userPhoto,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="userSex != null">
|
|
#{userSex,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="accountBalance != null">
|
|
#{accountBalance,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="status != null">
|
|
#{status,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="createTime != null">
|
|
#{createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
#{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="com.java2nb.novel.user.entity.UserExample" resultType="java.lang.Long">
|
|
select count(*) from user
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
update user
|
|
<set>
|
|
<if test="record.id != null">
|
|
id = #{record.id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.username != null">
|
|
username = #{record.username,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.password != null">
|
|
password = #{record.password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.nickName != null">
|
|
nick_name = #{record.nickName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.userPhoto != null">
|
|
user_photo = #{record.userPhoto,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.userSex != null">
|
|
user_sex = #{record.userSex,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="record.accountBalance != null">
|
|
account_balance = #{record.accountBalance,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.status != null">
|
|
status = #{record.status,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="record.createTime != null">
|
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="record.updateTime != null">
|
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</set>
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map">
|
|
update user
|
|
set id = #{record.id,jdbcType=BIGINT},
|
|
username = #{record.username,jdbcType=VARCHAR},
|
|
password = #{record.password,jdbcType=VARCHAR},
|
|
nick_name = #{record.nickName,jdbcType=VARCHAR},
|
|
user_photo = #{record.userPhoto,jdbcType=VARCHAR},
|
|
user_sex = #{record.userSex,jdbcType=TINYINT},
|
|
account_balance = #{record.accountBalance,jdbcType=BIGINT},
|
|
status = #{record.status,jdbcType=TINYINT},
|
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.java2nb.novel.user.entity.User">
|
|
update user
|
|
<set>
|
|
<if test="username != null">
|
|
username = #{username,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="password != null">
|
|
password = #{password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="nickName != null">
|
|
nick_name = #{nickName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="userPhoto != null">
|
|
user_photo = #{userPhoto,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="userSex != null">
|
|
user_sex = #{userSex,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="accountBalance != null">
|
|
account_balance = #{accountBalance,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="status != null">
|
|
status = #{status,jdbcType=TINYINT},
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.java2nb.novel.user.entity.User">
|
|
update user
|
|
set username = #{username,jdbcType=VARCHAR},
|
|
password = #{password,jdbcType=VARCHAR},
|
|
nick_name = #{nickName,jdbcType=VARCHAR},
|
|
user_photo = #{userPhoto,jdbcType=VARCHAR},
|
|
user_sex = #{userSex,jdbcType=TINYINT},
|
|
account_balance = #{accountBalance,jdbcType=BIGINT},
|
|
status = #{status,jdbcType=TINYINT},
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
</mapper> |