puzhibing
2024-02-05 640ff18d2d7f4be02ddb7f8f75e899f05545eb98
cloud-server-management/src/main/resources/mapper/UserMapper.xml
@@ -8,7 +8,6 @@
      <result column="avatar" property="avatar" />
      <result column="account" property="account" />
      <result column="password" property="password" />
      <result column="passWordUpdate" property="passWordUpdate"/>
      <result column="salt" property="salt" />
      <result column="name" property="name" />
      <result column="birthday" property="birthday" />
@@ -20,6 +19,8 @@
      <result column="status" property="status" />
      <result column="createtime" property="createtime" />
      <result column="version" property="version" />
      <result column="objectType" property="objectType"/>
      <result column="objectId" property="objectId"/>
   </resultMap>
   <sql id="Base_Column_List">
@@ -33,7 +34,7 @@
      id, account, name, birthday,password, sex, email, avatar,
      phone, roleid,salt,
      deptid, status,
      createtime, version,roleType,objectId
      createtime, version,objectType,objectId
   </sql>
   <select id="selectUsers" resultType="map">
@@ -69,7 +70,7 @@
      #{userId}
   </update>
   <select id="getByAccount" resultType="user">
   <select id="getByAccount" resultType="com.dsh.guns.modular.system.model.User">
      select
      <include refid="Base_Column_List_With_Pwd" />
      from sys_user where account = #{account} and status != 3
@@ -105,8 +106,44 @@
         <if test="beginTime != null and beginTime != '' and endTime != null and endTime != ''">
            and (o.createTime between CONCAT(#{beginTime},' 00:00:00') and CONCAT(#{endTime},' 23:59:59'))
         </if>
         <if test="objectType ==3">
            and (o.objectType =3  and o.objectId =#{objectId})
         </if>
         <if test="objectType ==1">
            and o.objectType =1
         </if>
      </where>
      order by o.id desc
   </select>
    <select id="searchUsers" resultType="com.dsh.guns.modular.system.model.UserListVO">
      select t1.id,t1.name ,t1.phone ,t1.avatar,t1.birthday,t1.sex,t1.idCard,t1.status,t1.version
       ,t2.simplename as deptName from sys_user t1
       left join sys_dept t2 on t1.deptid = t2.id
      <where>
         <if test="query.name != null and query.name != ''">
            and t1.name like CONCAT('%',#{query.name},'%')
         </if>
         <if test="query.phone != null and query.phone != ''">
            and t1.phone like CONCAT('%',#{query.phone},'%')
         </if>
         <if test="query.idCard != null and query.idCard != ''">
            and t1.idCard like CONCAT('%',#{query.idCard},'%')
         </if>
         <if test="query.isSales == 1">
            and (t2.simplename like CONCAT('%','销售','%')
            or t2.fullname like CONCAT('%','销售','%'))
         </if>
         <if test="query.status != null and query.status != ''">
            and t1.status = #{query.status}
         </if>
         <if test="query.storeIds != null and query.storeIds.size()>0">
            AND t1.id IN
            <foreach collection="query.storeIds" separator="," item="id" open="(" close=")">
               #{id}
            </foreach>
         </if>
         and t1.status != 3
      </where>
   </select>
</mapper>