From 92257d291a9d171a15b22c1fc6527b1a909ac3f6 Mon Sep 17 00:00:00 2001
From: houruijun <411269194@kidgrow.com>
Date: Sun, 09 Aug 2020 15:11:30 +0800
Subject: [PATCH] 1.增加运营平台首页页面功能 2.修改检查科室名称的问题

---
 kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDoctorMapper.xml |   50 +++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 47 insertions(+), 3 deletions(-)

diff --git a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDoctorMapper.xml b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDoctorMapper.xml
index e9af41f..04094cf 100644
--- a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDoctorMapper.xml
+++ b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysDoctorMapper.xml
@@ -4,7 +4,7 @@
 <mapper namespace="com.kidgrow.usercenter.mapper.SysDoctorMapper">
     <!--定义查询列-->
     <sql id="Column_List">
-	   *
+	  DISTINCT *
 	</sql>
 
     <!--sql查询片段-->
@@ -22,7 +22,7 @@
                 and hospital_id = #{p.hospitalId}
             </if>
             <if test="p.hospitalName != null and p.hospitalName !=''">
-                and hospital_name = #{p.hospitalName}
+                and hospital_name like '%${p.hospitalName}%'
             </if>
             <if test="p.departmentId != null and p.departmentId !=''">
                 and department_id = #{p.departmentId}
@@ -37,7 +37,7 @@
                 and doctor_logo = #{p.doctorLogo}
             </if>
             <if test="p.doctorTel != null and p.doctorTel !=''">
-                and doctor_tel like '%${p.doctorTel}%'
+                and doctor_tel like concat('%',#{p.doctorTel},'%')
             </if>
             <if test="p.doctorRankId != null and p.doctorRankId !=''">
                 and doctor_rank_id = #{p.doctorRankId}
@@ -90,6 +90,7 @@
             <if test="p.updateTime != null and p.updateTime !=''">
                 and update_time = #{p.updateTime}
             </if>
+            <include refid="com.kidgrow.usercenter.mapper.SysRoleOrganizationMapper.Role_Organization"/>
         </where>
     </sql>
 
@@ -111,4 +112,47 @@
         <include refid="where"/>
         order by id desc
     </select>
+
+    <select id="userIsAdmin" parameterType="string" resultType="com.kidgrow.usercenter.model.SysDoctor">
+		SELECT
+		is_admin_user
+		FROM
+			sys_doctor
+		WHERE
+		user_id IN (
+		SELECT
+			id
+		FROM
+			sys_user
+		WHERE
+		username = #{userName}
+		OR mobile = #{userName})
+	</select>
+    <select id="chartDoctor" resultType="int" parameterType="int">
+        select count(id) doctorCount from sys_doctor where is_del=0 and enabled=1
+        <if test="datatype==0">
+            -- 自注册医生
+            and (doctor_type=0 or doctor_type=1) and doctor_state=0
+        </if>
+        <if test="datatype==1">
+            -- 签约医生
+            and is_signing=1 and doctor_state=1
+        </if>
+        <if test="datatype==2">
+            -- 医答医生
+            and is_answer=1 and doctor_state=1
+        </if>
+        <if test="datatype==3">
+            -- C端医生
+            and (doctor_type=2 or doctor_type=0) and doctor_state=1
+        </if>
+        <if test="datatype==4">
+            -- H端医生
+            and (doctor_type=1 or doctor_type=0) and doctor_state=1
+        </if>
+        <if test="datatype==5">
+            -- H端医生
+            and (doctor_type=1 or doctor_type=0) and doctor_state=0 and enabled=0
+        </if>
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.8.0