From 401cfa05b816035bd7d5f57b58e163beb94c1471 Mon Sep 17 00:00:00 2001 From: houruijun <411269194@kidgrow.com> Date: Sat, 10 Oct 2020 15:59:21 +0800 Subject: [PATCH] 1.修改获取用户基本信息的时候接口异常问题 2.修改无任何权限用户登录运营平台后,首页空白的问题 --- kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml index 5c4c117..a46fb44 100644 --- a/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml +++ b/kidgrow-business/kidgrow-usercenter/kidgrow-usercenter-biz/src/main/resources/mapper/SysHospitalMapper.xml @@ -164,7 +164,7 @@ <if test="itemto.flag"> </if> <if test="!itemto.flag"> - or ( HOS.is_del = 0 and HOS.enabled=1) + or ( hospitals.hosisdel = 0 and hospitals.hosenabled=1) </if> </when> <when test="inx==2"> @@ -183,7 +183,7 @@ index=""> create_user_org_code = #{itemtoto.orgCode} </foreach> - and HOS.is_del = 0 and HOS.enabled=1 + and hospitals.hosisdel = 0 and hospitals.hosenabled=1 ) </if> </when> @@ -193,7 +193,7 @@ create_user_org_code = #{itemto.object} </if> <if test="!itemto.flag"> - or (create_user_org_code = #{itemto.object} and HOS.is_del = 0 and HOS.enabled=1) + or (create_user_org_code = #{itemto.object} and hospitals.hosisdel = 0 and hospitals.hosenabled=1) </if> </when> <when test="inx == 4"> @@ -202,8 +202,8 @@ create_user_org_code like '${itemto.object}%' </if> <if test="!itemto.flag"> - or (create_user_org_code like '${itemto.object}%' and HOS.is_del = 0 and - HOS.enabled=1) + or (create_user_org_code like '${itemto.object}%' and hospitals.hosisdel = 0 and + hospitals.hosenabled=1) </if> </when> <when test="inx == 5"> @@ -212,7 +212,7 @@ hospitals.create_user_id = #{itemto.object} </if> <if test="!itemto.flag"> - or (hospitals.create_user_id = #{itemto.object} and HOS.is_del = 0 and HOS.enabled=1) + or (hospitals.create_user_id = #{itemto.object} and hospitals.hosisdel = 0 and hospitals.hosenabled=1) </if> </when> <otherwise> -- Gitblit v1.8.0