From dc998c9c02140cffdf39a2e814693f253b9a6b32 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期日, 12 十一月 2023 16:32:18 +0800
Subject: [PATCH] 1、对象转map改用org.apache.dubbo(阿里开发) 2、实现用户管理UserCtrl,及其分页查询数据功能
---
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml | 94 ++++++++++++++++++++++++++++++++++++++++-------
1 files changed, 80 insertions(+), 14 deletions(-)
diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
index 20721d8..f8b2d69 100644
--- a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
+++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
@@ -3,27 +3,93 @@
<!--namespace瀵瑰簲mapper鎺ュ彛鎵�鍦ㄧ殑浣嶇疆-->
<mapper namespace="com.dy.pipIrrGlobal.daoBa.BaUserMapper">
- <resultMap id="login" type="com.dy.pipIrrGlobal.pojoBa.BaUser">
+ <resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoBa.BaUser">
+ <!--@mbg.generated-->
+ <!--@Table ba_user-->
+ <id property="id" column="id" />
+ <result property="name" column="name"/>
+ <result property="phone" column="phone"/>
+ <result property="password" column="password"/>
+ <result property="orgTag" column="orgTag"/>
+ <result property="supperAdmin" column="supperAdmin"/>
+ <result property="disabled" column="disabled" typeHandler="com.dy.common.mybatis.envm.EnumCodeTypeHandler" javaType="com.dy.common.mybatis.envm.Disabled"/>
+ <result property="deleted" column="deleted" typeHandler="com.dy.common.mybatis.envm.EnumCodeTypeHandler" javaType="com.dy.common.mybatis.envm.Deleted"/>
+ </resultMap>
+
+ <resultMap id="partResultMap" type="com.dy.pipIrrGlobal.pojoBa.BaUser">
+ <!--@mbg.generated-->
+ <!--@Table ba_user-->
<id property="id" column="id" />
<result property="name" column="name"/>
<result property="phone" column="phone"/>
<result property="orgTag" column="orgTag"/>
+ <result property="supperAdmin" column="supperAdmin"/>
+ <result property="disabled" column="disabled" typeHandler="com.dy.common.mybatis.envm.EnumCodeTypeHandler" javaType="com.dy.common.mybatis.envm.Disabled"/>
</resultMap>
- <!--
- <select id="login" resultMap="login">
- select id, name, phone, orgTag
- from ba_user
- where disabled=0 and deleted=0 and phone=#{phone} and password=#{password}
- </select>
- <select id="login" resultType="com.dy.pipIrrGlobal.pojoBa.BaUser">
- select id, name, phone, orgTag
- -->
- <select id="login" resultMap="login" >
- select *
- from ba_user r
- where disabled=0 and deleted=0 and phone=#{phone} and password=#{password}
+
+ <resultMap id="loginResultMap" type="com.dy.pipIrrGlobal.pojoBa.BaUser">
+ <id property="id" column="id" />
+ <result property="name" column="name"/>
+ <result property="phone" column="phone"/>
+ <result property="orgTag" column="orgTag"/>
+ <result property="supperAdmin" column="supperAdmin"/>
+ </resultMap>
+
+ <resultMap id="someResultMap" extends="partResultMap" type="com.dy.pipIrrGlobal.pojoBa.BaUser">
+ <collection property="roleList" fetchType="lazy" column="{userId=id}" select="com.dy.pipIrrGlobal.daoBa.BaRoleMapper.selectByUserId" />
+ </resultMap>
+
+ <sql id="Base_Column_List">
+ id, name, phone, password, orgTag, supperAdmin, disabled, deleted
+ </sql>
+
+ <sql id="part_Column_List">
+ id, name, phone, orgTag, disabled
+ </sql>
+
+ <sql id="Login_Column_List">
+ id, name, phone, orgTag, supperAdmin
+ </sql>
+
+ <select id="login" resultMap="loginResultMap" >
+ select
+ <include refid="Login_Column_List" />
+ from ba_user
+ where disabled!=1 and deleted!=1 and phone=#{phone} and password=#{password}
</select>
+ <select id="selectTotal" parameterType="java.util.Map" resultType="java.lang.Long">
+ select
+ count(*)
+ from ba_user where supperAdmin!=1 and disabled!=1 and deleted!=1
+ <trim prefix="and" suffixOverrides="and">
+ <if test="name != null">
+ name like concat('%', #{name}, '%') and
+ </if>
+ <if test="phone != null">
+ phone = '#{phone,jdbcType=VARCHAR}'
+ </if>
+ </trim>
+ </select>
+ <select id="selectSome" parameterType="java.util.Map" resultMap="someResultMap">
+ select
+ <include refid="part_Column_List" />
+ from ba_user where supperAdmin!=1 and disabled!=1 and deleted!=1
+ <trim prefix="and" suffixOverrides="and">
+ <if test="name != null">
+ name like concat('%', #{name}, '%') and
+ </if>
+ <if test="phone != null">
+ phone = '#{phone,jdbcType=VARCHAR}'
+ </if>
+ </trim>
+ order by id DESC
+ <trim prefix="limit " >
+ <if test="queryStart != null and queryCount != null">
+ #{queryStart}, #{queryCount}
+ </if>
+ </trim>
+ </select>
<!--
<insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoBa.BaUser">
<selectKey keyProperty="id" order="AFTER" resultType="java.lang.Long" id="selectKey">
--
Gitblit v1.8.0