|
@@ -1,144 +0,0 @@
|
|
|
-<?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.keao.edu.common.dal.dao.SysUserDao">
|
|
|
-
|
|
|
- <resultMap type="com.keao.edu.common.entity.SysUser" id="SysUser">
|
|
|
- <result column="id_" property="id" />
|
|
|
- <result column="username_" property="username" />
|
|
|
- <result column="password_" property="password" />
|
|
|
- <result column="salt_" property="salt" />
|
|
|
- <result column="phone_" property="phone" />
|
|
|
- <result column="avatar_" property="avatar" />
|
|
|
- <result column="create_time_" property="createTime" />
|
|
|
- <result column="update_time_" property="updateTime" />
|
|
|
- <result column="lock_flag_" property="lockFlag" />
|
|
|
- <result column="del_flag_" property="delFlag" />
|
|
|
- <result column="wx_openid_" property="wxOpenid" />
|
|
|
- <result column="qq_openid_" property="qqOpenid" />
|
|
|
- <result column="user_type_" property="userType" />
|
|
|
- <result column="gender_" property="gender" />
|
|
|
- <result column="nation_" property="nation" />
|
|
|
- <result column="birthdate_" property="birthdate" />
|
|
|
- <result column="email_" property="email" />
|
|
|
- <result column="organ_id_" property="organId" />
|
|
|
- <result column="im_token_" property="imToken" />
|
|
|
- <result column="real_name_" property="realName" />
|
|
|
- <result column="id_card_no_" property="idCardNo" />
|
|
|
- <result column="is_super_admin_" property="isSuperAdmin" />
|
|
|
- <result column="wechat_id_" property="wechatId" />
|
|
|
- </resultMap>
|
|
|
-
|
|
|
- <!-- 根据主键查询一条记录 -->
|
|
|
- <select id="get" resultMap="SysUser" >
|
|
|
- SELECT * FROM sys_user WHERE id_ = #{id}
|
|
|
- </select>
|
|
|
-
|
|
|
- <!-- 全查询 -->
|
|
|
- <select id="findAll" resultMap="SysUser">
|
|
|
- SELECT * FROM sys_user ORDER BY id_
|
|
|
- </select>
|
|
|
-
|
|
|
- <!-- 向数据库增加一条记录 -->
|
|
|
- <insert id="insert" parameterType="com.keao.edu.common.entity.SysUser" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
|
|
|
- <!--
|
|
|
- <selectKey resultClass="int" keyProperty="id" >
|
|
|
- SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
|
|
|
- </selectKey>
|
|
|
- -->
|
|
|
- INSERT INTO sys_user (id_,username_,password_,salt_,phone_,avatar_,create_time_,update_time_,lock_flag_,del_flag_,wx_openid_,qq_openid_,user_type_,gender_,nation_,birthdate_,email_,organ_id_,im_token_,real_name_,id_card_no_,is_super_admin_,wechat_id_) VALUES(#{id},#{username},#{password},#{salt},#{phone},#{avatar},#{createTime},#{updateTime},#{lockFlag},#{delFlag},#{wxOpenid},#{qqOpenid},#{userType},#{gender},#{nation},#{birthdate},#{email},#{organId},#{imToken},#{realName},#{idCardNo},#{isSuperAdmin},#{wechatId})
|
|
|
- </insert>
|
|
|
-
|
|
|
- <!-- 根据主键查询一条记录 -->
|
|
|
- <update id="update" parameterType="com.keao.edu.common.entity.SysUser">
|
|
|
- UPDATE sys_user <set>
|
|
|
-<if test="delFlag != null">
|
|
|
-del_flag_ = #{delFlag},
|
|
|
-</if>
|
|
|
-<if test="wxOpenid != null">
|
|
|
-wx_openid_ = #{wxOpenid},
|
|
|
-</if>
|
|
|
-<if test="organId != null">
|
|
|
-organ_id_ = #{organId},
|
|
|
-</if>
|
|
|
-<if test="avatar != null">
|
|
|
-avatar_ = #{avatar},
|
|
|
-</if>
|
|
|
-<if test="imToken != null">
|
|
|
-im_token_ = #{imToken},
|
|
|
-</if>
|
|
|
-<if test="email != null">
|
|
|
-email_ = #{email},
|
|
|
-</if>
|
|
|
-<if test="id != null">
|
|
|
-id_ = #{id},
|
|
|
-</if>
|
|
|
-<if test="gender != null">
|
|
|
-gender_ = #{gender},
|
|
|
-</if>
|
|
|
-<if test="password != null">
|
|
|
-password_ = #{password},
|
|
|
-</if>
|
|
|
-<if test="salt != null">
|
|
|
-salt_ = #{salt},
|
|
|
-</if>
|
|
|
-<if test="realName != null">
|
|
|
-real_name_ = #{realName},
|
|
|
-</if>
|
|
|
-<if test="isSuperAdmin != null">
|
|
|
-is_super_admin_ = #{isSuperAdmin},
|
|
|
-</if>
|
|
|
-<if test="username != null">
|
|
|
-username_ = #{username},
|
|
|
-</if>
|
|
|
-<if test="createTime != null">
|
|
|
-create_time_ = #{createTime},
|
|
|
-</if>
|
|
|
-<if test="userType != null">
|
|
|
-user_type_ = #{userType},
|
|
|
-</if>
|
|
|
-<if test="updateTime != null">
|
|
|
-update_time_ = #{updateTime},
|
|
|
-</if>
|
|
|
-<if test="idCardNo != null">
|
|
|
-id_card_no_ = #{idCardNo},
|
|
|
-</if>
|
|
|
-<if test="lockFlag != null">
|
|
|
-lock_flag_ = #{lockFlag},
|
|
|
-</if>
|
|
|
-<if test="birthdate != null">
|
|
|
-birthdate_ = #{birthdate},
|
|
|
-</if>
|
|
|
-<if test="phone != null">
|
|
|
-phone_ = #{phone},
|
|
|
-</if>
|
|
|
-<if test="wechatId != null">
|
|
|
-wechat_id_ = #{wechatId},
|
|
|
-</if>
|
|
|
-<if test="qqOpenid != null">
|
|
|
-qq_openid_ = #{qqOpenid},
|
|
|
-</if>
|
|
|
-<if test="nation != null">
|
|
|
-nation_ = #{nation},
|
|
|
-</if>
|
|
|
-</set> WHERE id_ = #{id}
|
|
|
- </update>
|
|
|
-
|
|
|
- <!-- 根据主键删除一条记录 -->
|
|
|
- <delete id="delete" >
|
|
|
- DELETE FROM sys_user WHERE id_ = #{id}
|
|
|
- </delete>
|
|
|
-
|
|
|
- <!-- 分页查询 -->
|
|
|
- <select id="queryPage" resultMap="SysUser" parameterType="map">
|
|
|
- SELECT * FROM sys_user ORDER BY id_ <include refid="global.limit"/>
|
|
|
- </select>
|
|
|
-
|
|
|
- <!-- 查询当前表的总记录数 -->
|
|
|
- <select id="queryCount" resultType="int">
|
|
|
- SELECT COUNT(*) FROM sys_user
|
|
|
- </select>
|
|
|
-</mapper>
|