339 lines
12 KiB
XML
339 lines
12 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="io.dataease.base.mapper.UserMapper">
|
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.User">
|
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
|
<result column="email" jdbcType="VARCHAR" property="email" />
|
|
<result column="password" jdbcType="VARCHAR" property="password" />
|
|
<result column="status" jdbcType="VARCHAR" property="status" />
|
|
<result column="create_time" jdbcType="BIGINT" property="createTime" />
|
|
<result column="update_time" jdbcType="BIGINT" property="updateTime" />
|
|
<result column="language" jdbcType="VARCHAR" property="language" />
|
|
<result column="last_workspace_id" jdbcType="VARCHAR" property="lastWorkspaceId" />
|
|
<result column="last_organization_id" jdbcType="VARCHAR" property="lastOrganizationId" />
|
|
<result column="phone" jdbcType="VARCHAR" property="phone" />
|
|
<result column="source" jdbcType="VARCHAR" property="source" />
|
|
<result column="last_project_id" jdbcType="VARCHAR" property="lastProjectId" />
|
|
</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, `name`, email, `password`, `status`, create_time, update_time, `language`, last_workspace_id,
|
|
last_organization_id, phone, `source`, last_project_id
|
|
</sql>
|
|
<select id="selectByExample" parameterType="io.dataease.base.domain.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.String" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from user
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
delete from user
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.UserExample">
|
|
delete from user
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="io.dataease.base.domain.User">
|
|
insert into user (id, `name`, email,
|
|
`password`, `status`, create_time,
|
|
update_time, `language`, last_workspace_id,
|
|
last_organization_id, phone, `source`,
|
|
last_project_id)
|
|
values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR},
|
|
#{password,jdbcType=VARCHAR}, #{status,jdbcType=VARCHAR}, #{createTime,jdbcType=BIGINT},
|
|
#{updateTime,jdbcType=BIGINT}, #{language,jdbcType=VARCHAR}, #{lastWorkspaceId,jdbcType=VARCHAR},
|
|
#{lastOrganizationId,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, #{source,jdbcType=VARCHAR},
|
|
#{lastProjectId,jdbcType=VARCHAR})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.User">
|
|
insert into user
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="name != null">
|
|
`name`,
|
|
</if>
|
|
<if test="email != null">
|
|
email,
|
|
</if>
|
|
<if test="password != null">
|
|
`password`,
|
|
</if>
|
|
<if test="status != null">
|
|
`status`,
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time,
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time,
|
|
</if>
|
|
<if test="language != null">
|
|
`language`,
|
|
</if>
|
|
<if test="lastWorkspaceId != null">
|
|
last_workspace_id,
|
|
</if>
|
|
<if test="lastOrganizationId != null">
|
|
last_organization_id,
|
|
</if>
|
|
<if test="phone != null">
|
|
phone,
|
|
</if>
|
|
<if test="source != null">
|
|
`source`,
|
|
</if>
|
|
<if test="lastProjectId != null">
|
|
last_project_id,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="name != null">
|
|
#{name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="email != null">
|
|
#{email,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="password != null">
|
|
#{password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="status != null">
|
|
#{status,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
#{createTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
#{updateTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="language != null">
|
|
#{language,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="lastWorkspaceId != null">
|
|
#{lastWorkspaceId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="lastOrganizationId != null">
|
|
#{lastOrganizationId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="phone != null">
|
|
#{phone,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="source != null">
|
|
#{source,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="lastProjectId != null">
|
|
#{lastProjectId,jdbcType=VARCHAR},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="io.dataease.base.domain.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=VARCHAR},
|
|
</if>
|
|
<if test="record.name != null">
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.email != null">
|
|
email = #{record.email,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.password != null">
|
|
`password` = #{record.password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.status != null">
|
|
`status` = #{record.status,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.createTime != null">
|
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.updateTime != null">
|
|
update_time = #{record.updateTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.language != null">
|
|
`language` = #{record.language,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.lastWorkspaceId != null">
|
|
last_workspace_id = #{record.lastWorkspaceId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.lastOrganizationId != null">
|
|
last_organization_id = #{record.lastOrganizationId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.phone != null">
|
|
phone = #{record.phone,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.source != null">
|
|
`source` = #{record.source,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.lastProjectId != null">
|
|
last_project_id = #{record.lastProjectId,jdbcType=VARCHAR},
|
|
</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=VARCHAR},
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
email = #{record.email,jdbcType=VARCHAR},
|
|
`password` = #{record.password,jdbcType=VARCHAR},
|
|
`status` = #{record.status,jdbcType=VARCHAR},
|
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
|
update_time = #{record.updateTime,jdbcType=BIGINT},
|
|
`language` = #{record.language,jdbcType=VARCHAR},
|
|
last_workspace_id = #{record.lastWorkspaceId,jdbcType=VARCHAR},
|
|
last_organization_id = #{record.lastOrganizationId,jdbcType=VARCHAR},
|
|
phone = #{record.phone,jdbcType=VARCHAR},
|
|
`source` = #{record.source,jdbcType=VARCHAR},
|
|
last_project_id = #{record.lastProjectId,jdbcType=VARCHAR}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.User">
|
|
update user
|
|
<set>
|
|
<if test="name != null">
|
|
`name` = #{name,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="email != null">
|
|
email = #{email,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="password != null">
|
|
`password` = #{password,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="status != null">
|
|
`status` = #{status,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time = #{createTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time = #{updateTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="language != null">
|
|
`language` = #{language,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="lastWorkspaceId != null">
|
|
last_workspace_id = #{lastWorkspaceId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="lastOrganizationId != null">
|
|
last_organization_id = #{lastOrganizationId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="phone != null">
|
|
phone = #{phone,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="source != null">
|
|
`source` = #{source,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="lastProjectId != null">
|
|
last_project_id = #{lastProjectId,jdbcType=VARCHAR},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.User">
|
|
update user
|
|
set `name` = #{name,jdbcType=VARCHAR},
|
|
email = #{email,jdbcType=VARCHAR},
|
|
`password` = #{password,jdbcType=VARCHAR},
|
|
`status` = #{status,jdbcType=VARCHAR},
|
|
create_time = #{createTime,jdbcType=BIGINT},
|
|
update_time = #{updateTime,jdbcType=BIGINT},
|
|
`language` = #{language,jdbcType=VARCHAR},
|
|
last_workspace_id = #{lastWorkspaceId,jdbcType=VARCHAR},
|
|
last_organization_id = #{lastOrganizationId,jdbcType=VARCHAR},
|
|
phone = #{phone,jdbcType=VARCHAR},
|
|
`source` = #{source,jdbcType=VARCHAR},
|
|
last_project_id = #{lastProjectId,jdbcType=VARCHAR}
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
</mapper>
|