<?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.moral.mapper.OperateUserMapper" >
|
<resultMap id="BaseResultMap" type="com.moral.entity.OperateUser" >
|
<id column="id" property="id" jdbcType="INTEGER" />
|
<result column="job_number" property="jobNumber" jdbcType="VARCHAR" />
|
<result column="name" property="name" jdbcType="VARCHAR" />
|
<result column="password" property="password" jdbcType="VARCHAR" />
|
<result column="organization_id" property="organizationId" jdbcType="INTEGER" />
|
<result column="mobile" property="mobile" jdbcType="VARCHAR" />
|
<result column="email" property="email" jdbcType="VARCHAR" />
|
<result column="weixin" property="weixin" jdbcType="VARCHAR" />
|
<result column="is_delete" property="isDelete" jdbcType="CHAR" />
|
<result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
|
<result column="expire_time" property="expireTime" jdbcType="TIMESTAMP" />
|
</resultMap>
|
<sql id="Example_Where_Clause" >
|
<where >
|
<foreach collection="oredCriteria" item="criteria" separator="or" >
|
<if test="criteria.valid" >
|
<trim prefix="(" suffix=")" prefixOverrides="and" >
|
<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 collection="criterion.value" item="listItem" open="(" close=")" 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="(" suffix=")" prefixOverrides="and" >
|
<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 collection="criterion.value" item="listItem" open="(" close=")" separator="," >
|
#{listItem}
|
</foreach>
|
</when>
|
</choose>
|
</foreach>
|
</trim>
|
</if>
|
</foreach>
|
</where>
|
</sql>
|
<sql id="Base_Column_List" >
|
id, job_number, name, password, organization_id, mobile, email, weixin, is_delete,
|
create_time, expire_time
|
</sql>
|
<select id="selectByExample" resultMap="BaseResultMap" parameterType="com.moral.entity.OperateUserExample" >
|
select
|
<if test="distinct" >
|
distinct
|
</if>
|
<include refid="Base_Column_List" />
|
from operate_user
|
<if test="_parameter != null" >
|
<include refid="Example_Where_Clause" />
|
</if>
|
<if test="orderByClause != null" >
|
order by ${orderByClause}
|
</if>
|
</select>
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
select
|
<include refid="Base_Column_List" />
|
from operate_user
|
where id = #{id,jdbcType=INTEGER}
|
</select>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
delete from operate_user
|
where id = #{id,jdbcType=INTEGER}
|
</delete>
|
<delete id="deleteByExample" parameterType="com.moral.entity.OperateUserExample" >
|
delete from operate_user
|
<if test="_parameter != null" >
|
<include refid="Example_Where_Clause" />
|
</if>
|
</delete>
|
<insert id="insert" parameterType="com.moral.entity.OperateUser" >
|
insert into operate_user (id, job_number, name,
|
password, organization_id, mobile,
|
email, weixin, is_delete,
|
create_time, expire_time)
|
values (#{id,jdbcType=INTEGER}, #{jobNumber,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
|
#{password,jdbcType=VARCHAR}, #{organizationId,jdbcType=INTEGER}, #{mobile,jdbcType=VARCHAR},
|
#{email,jdbcType=VARCHAR}, #{weixin,jdbcType=VARCHAR}, #{isDelete,jdbcType=CHAR},
|
#{createTime,jdbcType=TIMESTAMP}, #{expireTime,jdbcType=TIMESTAMP})
|
</insert>
|
<insert id="insertSelective" parameterType="com.moral.entity.OperateUser" >
|
insert into operate_user
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
<if test="id != null" >
|
id,
|
</if>
|
<if test="jobNumber != null" >
|
job_number,
|
</if>
|
<if test="name != null" >
|
name,
|
</if>
|
<if test="password != null" >
|
password,
|
</if>
|
<if test="organizationId != null" >
|
organization_id,
|
</if>
|
<if test="mobile != null" >
|
mobile,
|
</if>
|
<if test="email != null" >
|
email,
|
</if>
|
<if test="weixin != null" >
|
weixin,
|
</if>
|
<if test="isDelete != null" >
|
is_delete,
|
</if>
|
<if test="createTime != null" >
|
create_time,
|
</if>
|
<if test="expireTime != null" >
|
expire_time,
|
</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
<if test="id != null" >
|
#{id,jdbcType=INTEGER},
|
</if>
|
<if test="jobNumber != null" >
|
#{jobNumber,jdbcType=VARCHAR},
|
</if>
|
<if test="name != null" >
|
#{name,jdbcType=VARCHAR},
|
</if>
|
<if test="password != null" >
|
#{password,jdbcType=VARCHAR},
|
</if>
|
<if test="organizationId != null" >
|
#{organizationId,jdbcType=INTEGER},
|
</if>
|
<if test="mobile != null" >
|
#{mobile,jdbcType=VARCHAR},
|
</if>
|
<if test="email != null" >
|
#{email,jdbcType=VARCHAR},
|
</if>
|
<if test="weixin != null" >
|
#{weixin,jdbcType=VARCHAR},
|
</if>
|
<if test="isDelete != null" >
|
#{isDelete,jdbcType=CHAR},
|
</if>
|
<if test="createTime != null" >
|
#{createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="expireTime != null" >
|
#{expireTime,jdbcType=TIMESTAMP},
|
</if>
|
</trim>
|
</insert>
|
<select id="countByExample" parameterType="com.moral.entity.OperateUserExample" resultType="java.lang.Integer" >
|
select count(*) from operate_user
|
<if test="_parameter != null" >
|
<include refid="Example_Where_Clause" />
|
</if>
|
</select>
|
<update id="updateByExampleSelective" parameterType="map" >
|
update operate_user
|
<set >
|
<if test="record.id != null" >
|
id = #{record.id,jdbcType=INTEGER},
|
</if>
|
<if test="record.jobNumber != null" >
|
job_number = #{record.jobNumber,jdbcType=VARCHAR},
|
</if>
|
<if test="record.name != null" >
|
name = #{record.name,jdbcType=VARCHAR},
|
</if>
|
<if test="record.password != null" >
|
password = #{record.password,jdbcType=VARCHAR},
|
</if>
|
<if test="record.organizationId != null" >
|
organization_id = #{record.organizationId,jdbcType=INTEGER},
|
</if>
|
<if test="record.mobile != null" >
|
mobile = #{record.mobile,jdbcType=VARCHAR},
|
</if>
|
<if test="record.email != null" >
|
email = #{record.email,jdbcType=VARCHAR},
|
</if>
|
<if test="record.weixin != null" >
|
weixin = #{record.weixin,jdbcType=VARCHAR},
|
</if>
|
<if test="record.isDelete != null" >
|
is_delete = #{record.isDelete,jdbcType=CHAR},
|
</if>
|
<if test="record.createTime != null" >
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="record.expireTime != null" >
|
expire_time = #{record.expireTime,jdbcType=TIMESTAMP},
|
</if>
|
</set>
|
<if test="_parameter != null" >
|
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
</update>
|
<update id="updateByExample" parameterType="map" >
|
update operate_user
|
set id = #{record.id,jdbcType=INTEGER},
|
job_number = #{record.jobNumber,jdbcType=VARCHAR},
|
name = #{record.name,jdbcType=VARCHAR},
|
password = #{record.password,jdbcType=VARCHAR},
|
organization_id = #{record.organizationId,jdbcType=INTEGER},
|
mobile = #{record.mobile,jdbcType=VARCHAR},
|
email = #{record.email,jdbcType=VARCHAR},
|
weixin = #{record.weixin,jdbcType=VARCHAR},
|
is_delete = #{record.isDelete,jdbcType=CHAR},
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
expire_time = #{record.expireTime,jdbcType=TIMESTAMP}
|
<if test="_parameter != null" >
|
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
</update>
|
<update id="updateByPrimaryKeySelective" parameterType="com.moral.entity.OperateUser" >
|
update operate_user
|
<set >
|
<if test="jobNumber != null" >
|
job_number = #{jobNumber,jdbcType=VARCHAR},
|
</if>
|
<if test="name != null" >
|
name = #{name,jdbcType=VARCHAR},
|
</if>
|
<if test="password != null" >
|
password = #{password,jdbcType=VARCHAR},
|
</if>
|
<if test="organizationId != null" >
|
organization_id = #{organizationId,jdbcType=INTEGER},
|
</if>
|
<if test="mobile != null" >
|
mobile = #{mobile,jdbcType=VARCHAR},
|
</if>
|
<if test="email != null" >
|
email = #{email,jdbcType=VARCHAR},
|
</if>
|
<if test="weixin != null" >
|
weixin = #{weixin,jdbcType=VARCHAR},
|
</if>
|
<if test="isDelete != null" >
|
is_delete = #{isDelete,jdbcType=CHAR},
|
</if>
|
<if test="createTime != null" >
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="expireTime != null" >
|
expire_time = #{expireTime,jdbcType=TIMESTAMP},
|
</if>
|
</set>
|
where id = #{id,jdbcType=INTEGER}
|
</update>
|
<update id="updateByPrimaryKey" parameterType="com.moral.entity.OperateUser" >
|
update operate_user
|
set job_number = #{jobNumber,jdbcType=VARCHAR},
|
name = #{name,jdbcType=VARCHAR},
|
password = #{password,jdbcType=VARCHAR},
|
organization_id = #{organizationId,jdbcType=INTEGER},
|
mobile = #{mobile,jdbcType=VARCHAR},
|
email = #{email,jdbcType=VARCHAR},
|
weixin = #{weixin,jdbcType=VARCHAR},
|
is_delete = #{isDelete,jdbcType=CHAR},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
expire_time = #{expireTime,jdbcType=TIMESTAMP}
|
where id = #{id,jdbcType=INTEGER}
|
</update>
|
</mapper>
|