123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614 |
- <?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="cn.ourwill.module.sys.dao.SysUserDao">
- <resultMap type="cn.ourwill.module.sys.entity.SysUser" id="baseMap">
- <result column="user_id" property="userId"/>
- <result column="group_id" property="groupId"/>
- <result column="login_name" property="loginName"/>
- <result column="login_pwd" property="loginPwd"/>
- <result column="user_name" property="userName"/>
- <result column="user_type" property="userType"/>
- <result column="status" property="status"/>
- <result column="last_login_time" property="lastLoginTime"/>
- <result column="last_login_ip" property="lastLoginIp"/>
- <result column="create_time" property="createTime"/>
- <result column="email" property="email"/>
- <result column="tel" property="tel"/>
- <result column="organize_id" property="organizeId"/>
- <result column="id" property="id"/>
- <result column="uuid" property="uuid"/>
- <result column="name" property="name"/>
- <result column="realname" property="realname"/>
- <result column="password" property="password"/>
- <result column="provinceId" property="provinceId"/>
- <result column="cityId" property="cityId"/>
- <result column="grainId" property="grainId"/>
- <result column="houseId" property="houseId"/>
- <result column="position" property="position"/>
- <result column="c_id" property="cId"/>
- <result column="lastTime" property="lastTime"/>
- <result column="state" property="state"/>
- <result column="c_time" property="cTime"/>
- <result column="birthday" property="birthday"/>
- <result column="email" property="email"/>
- <result column="phone" property="phone"/>
- <result column="address" property="address"/>
- <result column="avator" property="avator"/>
- <result column="u_id" property="uId"/>
- <result column="u_time" property="uTime"/>
- <result column="version" property="version"/>
- <result column="keep_prompt_time" property="keepPromptTime"/>
- <result column="device_prompt_time" property="devicePromptTime"/>
- <result column="status" property="status"/>
- </resultMap>
- <sql id="columns">
- id ,
- uuid ,
- `name` ,
- realname ,
- password ,
- email,
- phone,
- address,
- birthday,
- avator,
- provinceId ,
- cityId ,
- grainId ,
- houseId ,
- `position` ,
- c_id ,
- lastTime ,
- state ,
- c_time ,
- u_id ,
- u_time ,
- version ,
- keep_prompt_time ,
- device_prompt_time,
- status
- </sql>
- <sql id="pageEnd">
- limit #{page.offset,jdbcType=INTEGER} ,#{page.pageSize,jdbcType=INTEGER}
- </sql>
- <sql id="joinCols">
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
-
- <select id="getByName" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- WHERE a.name = #{name}
- limit 1
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT DISTINCT s.*
- FROM sys_user s
- LEFT JOIN sys_user_role ur on s.id=ur.user_id
- LEFT JOIN sys_role r on r.id=ur.role_id
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and s.id = #{id}
- </if>
- <if test="uuid !=null">
- and s.uuid = #{uuid}
- </if>
- <if test="name !=null">
- <!--and s.`name` like CONCAT('%',#{name},'%') -->
- and s.`name` =#{name}
- </if>
- <if test="realname !=null">
- and s.realname = #{realname}
- </if>
- <if test="password !=null">
- and s.password = #{password}
- </if>
- <if test="provinceId !=null">
- and s.provinceId = #{provinceId}
- </if>
- <if test="cityId !=null">
- and s.cityId = #{cityId}
- </if>
- <if test="grainId !=null">
- and s.grainId = #{grainId}
- </if>
- <if test="houseId !=null">
- and s.houseId = #{houseId}
- </if>
- <if test="position !=null">
- and s.`position` = #{position}
- </if>
- <if test="cId !=null">
- and s.c_id = #{cId}
- </if>
- <if test="lastTime !=null">
- and s.lastTime = #{lastTime}
- </if>
- <if test="state !=null">
- and s.state = #{state}
- </if>
- <if test="cTime !=null">
- and s.c_time = #{cTime}
- </if>
- <if test="uId !=null">
- and s.u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and s.u_time = #{uTime}
- </if>
- <if test="version !=null">
- and s.version = #{version}
- </if>
- <if test="keepPromptTime !=null">
- and s.keep_prompt_time = #{keepPromptTime}
- </if>
- <if test="devicePromptTime !=null">
- and s.device_prompt_time = #{devicePromptTime}
- </if>
- <if test="status !=null">
- and s.status = #{status}
- </if>
- <if test="roleName !=null">
- and r.`name` = #{roleName}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <select id="findAllList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and id = #{id}
- </if>
- <if test="uuid !=null">
- and uuid = #{uuid}
- </if>
- <if test="name !=null and name !='' ">
- and `name` like CONCAT('%',#{name},'%')
- </if>
- <if test="realname !=null">
- and realname = #{realname}
- </if>
- <if test="password !=null">
- and password = #{password}
- </if>
- <if test="provinceId !=null">
- and provinceId = #{provinceId}
- </if>
- <if test="cityId !=null">
- and cityId = #{cityId}
- </if>
- <if test="grainId !=null">
- and grainId = #{grainId}
- </if>
- <if test="houseId !=null">
- and houseId = #{houseId}
- </if>
- <if test="position !=null">
- and `position` = #{position}
- </if>
- <if test="cId !=null">
- and c_id = #{cId}
- </if>
- <if test="lastTime !=null">
- and lastTime = #{lastTime}
- </if>
- <if test="state !=null">
- and state = #{state}
- </if>
- <if test="cTime !=null">
- and c_time = #{cTime}
- </if>
- <if test="uId !=null">
- and u_id = #{uId}
- </if>
- <if test="uTime !=null">
- and u_time = #{uTime}
- </if>
- <if test="version !=null">
- and version = #{version}
- </if>
- <if test="keepPromptTime !=null">
- and keep_prompt_time = #{keepPromptTime}
- </if>
- <if test="devicePromptTime !=null">
- and device_prompt_time = #{devicePromptTime}
- </if>
- <if test="status !=null">
- and status = #{status}
- </if>
- </where>
- <choose>
- <when test="page !=null and page.orderBy != null and page.orderBy != ''">
- ORDER BY ${page.orderBy}
- </when>
- <otherwise>
- </otherwise>
- </choose>
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.sys.entity.SysUser">
- INSERT INTO sys_user
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" uuid != null">
- uuid,
- </if>
- <if test=" name != null">
- `name`,
- </if>
- <if test=" realname != null">
- realname,
- </if>
- <if test=" password != null">
- password,
- </if>
- <if test=" birthday != null">
- birthday,
- </if>
- <if test=" email != null">
- email,
- </if>
- <if test=" phone != null">
- phone,
- </if>
- <if test=" address != null">
- address,
- </if>
- <if test=" provinceId != null">
- provinceId,
- </if>
- <if test=" avator != null">
- avator,
- </if>
- <if test=" cityId != null">
- cityId,
- </if>
- <if test=" grainId != null">
- grainId,
- </if>
- <if test=" houseId != null">
- houseId,
- </if>
- <if test=" position != null">
- `position` ,
- </if>
- <if test=" cId != null">
- c_id,
- </if>
- <if test=" lastTime != null">
- lastTime,
- </if>
- <if test=" state != null">
- state,
- </if>
- <if test=" cTime != null">
- c_time,
- </if>
- <if test=" uId != null">
- u_id,
- </if>
- <if test=" uTime != null">
- u_time,
- </if>
- <if test=" version != null">
- version,
- </if>
- <if test="keepPromptTime !=null">
- keep_prompt_time,
- </if>
- <if test="devicePromptTime !=null">
- device_prompt_time,
- </if>
- <if test="status !=null">
- status
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" uuid != null">
- #{uuid}, </if>
- <if test=" name != null">
- #{name}, </if>
- <if test=" realname != null">
- #{realname}, </if>
- <if test=" password != null">
- #{password}, </if>
- <if test=" birthday != null">
- #{birthday}, </if>
- <if test=" email != null">
- #{email}, </if>
- <if test=" phone != null">
- #{phone}, </if>
- <if test=" address != null">
- #{address}, </if>
- <if test=" provinceId != null">
- #{provinceId}, </if>
- <if test=" avator != null">
- #{avator}, </if>
- <if test=" cityId != null">
- #{cityId}, </if>
- <if test=" grainId != null">
- #{grainId}, </if>
- <if test=" houseId != null">
- #{houseId}, </if>
- <if test=" position != null">
- #{position}, </if>
- <if test=" cId != null">
- #{cId}, </if>
- <if test=" lastTime != null">
- #{lastTime}, </if>
- <if test=" state != null">
- #{state}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" uId != null">
- #{uId}, </if>
- <if test=" uTime != null">
- #{uTime}, </if>
- <if test=" version != null">
- #{version}, </if>
- <if test="keepPromptTime !=null">
- #{keepPromptTime},
- </if>
- <if test="devicePromptTime !=null">
- #{devicePromptTime},
- </if>
- <if test="status !=null">
- #{status}
- </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.sys.entity.SysUser">
- UPDATE sys_user <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="uuid != null">
- uuid= #{uuid} ,
- </if>
- <if test="name != null">
- `name`= #{name} ,
- </if>
- <if test="realname != null">
- realname= #{realname} ,
- </if>
- <if test="avator != null">
- avator= #{avator} ,
- </if>
- <if test="password != null">
- password= #{password} ,
- </if>
- <if test="birthday != null">
- birthday= #{birthday} ,
- </if>
- <if test="email != null">
- email= #{email} ,
- </if>
- <if test="phone != null">
- phone= #{phone} ,
- </if>
- <if test="address != null">
- address= #{address} ,
- </if>
- <if test="provinceId != null">
- provinceId= #{provinceId} ,
- </if>
- <if test="cityId != null">
- cityId= #{cityId} ,
- </if>
- <if test="grainId != null">
- grainId= #{grainId} ,
- </if>
- <if test="houseId != null">
- houseId= #{houseId} ,
- </if>
- <if test="position != null">
- position= #{position} ,
- </if>
- <if test="cId != null">
- c_id= #{cId} ,
- </if>
- <if test="lastTime != null">
- lastTime= #{lastTime} ,
- </if>
- <if test="state != null">
- state= #{state} ,
- </if>
- <if test="cTime != null">
- c_time= #{cTime} ,
- </if>
- <if test="uId != null">
- u_id= #{uId} ,
- </if>
- <if test="uTime != null">
- u_time= #{uTime} ,
- </if>
- <if test="version != null">
- version= #{version} ,
- </if>
- <if test="keepPromptTime !=null">
- keep_prompt_time = #{keepPromptTime} ,
- </if>
- <if test="devicePromptTime !=null">
- device_prompt_time = #{devicePromptTime},
- </if>
- <if test="status !=null">
- status = #{status}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <update id="deleteByIdOpen" parameterType="cn.ourwill.module.sys.entity.SysUser">
- UPDATE sys_user <set>
- <if test="id != null">
- status= #{status} ,
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <select id="getUser" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- <where>
- `name`= #{name} and `password`= #{password}
- <if test="uuid != null ">
- and `uuid`= #{uuid}
- </if>
- </where>
- </select>
- <select id="getUserByName" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- <where>
- `name`= #{name}
- </where>
- </select>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM sys_user WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM sys_user WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- <select id="getByUUID" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- where a.`uuid`= #{value}
- </select>
- <update id="csh_passd" parameterType="cn.ourwill.module.sys.entity.SysUser">
- update sys_user a
- set a.password='96e79218965eb72c92a549dd5a330112'
- WHERE name IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item.name}
- </foreach>
- </update>
- <select id="getAllBaoGuanYuanList" resultMap="baseMap" parameterType="cn.ourwill.module.sys.entity.SysUser">
- select
- a.id as id,
- a.realname as 'name',
- sg.name as 'grainName',
- sg.id as 'grainId'
- from sys_user a
- LEFT JOIN sys_grain sg on a.grainId=sg.id
- left join sys_user_role b on a.id=b.user_id
- left join sys_role c on c.id = b.role_id
- <where>
- and (c.NAME = '保管员' or c.NAME = '租仓库保管员权限')
- <if test="cityId !=null">
- and a.cityId = #{cityId}
- </if>
- <if test="grainId !=null">
- and a.grainId = #{grainId}
- </if>
- and a.uuid not in
- (
- select user_uuid from house_keeper d
- <where>
- <if test="grainId !=null">
- and d.grainId = #{grainId}
- </if>
- <if test="cityId !=null">
- and d.cityId = #{cityId}
- </if>
- and d.user_uuid is not NULL
- </where>
- )
- </where>
- GROUP by grainName
- </select>
- <select id="getAllUserByGrainId" resultMap="baseMap" parameterType="cn.ourwill.module.sys.entity.SysUser">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- WHERE a.grainId=#{grainId}
- </select>
- <select id="getAllUserByHouseId" resultMap="baseMap" parameterType="cn.ourwill.module.sys.entity.SysUser">
- SELECT
- <include refid="columns"/>
- FROM sys_user a
- <include refid="joinCols"/>
- WHERE find_in_set(#{grainId}, houseId);
- </select>
- <select id="getAllBaoGuanYuanNameByGrainId" resultMap="baseMap" parameterType="cn.ourwill.module.sys.entity.SysUser">
- SELECT
- a.id AS id,
- a.realname AS 'name',
- sg.id as 'grainId'
- FROM
- sys_user a
- LEFT JOIN sys_grain sg ON a.grainId = sg.id
- LEFT JOIN sys_user_role b ON a.id = b.user_id
- LEFT JOIN sys_role c ON c.id = b.role_id
- WHERE
- (c.NAME = '保管员' or c.NAME = '租仓库保管员权限')
- and a.grainId=#{grainId}
- </select>
- </mapper>
|