Pārlūkot izejas kodu

修复查询用户信息缺少and bug修复

wuxw 7 gadi atpakaļ
vecāks
revīzija
36ca1a9ce2

+ 1 - 1
java110-config/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml

@@ -268,7 +268,7 @@
         <if test="userId != null and userId != ''">
             and u.user_id = #{userId}
         </if>
-        <if test="statusCd !=null statusCd != ''">
+        <if test="statusCd !=null and statusCd != ''">
             and u.status_cd = #{statusCd}
         </if>
     </select>