Browse Source

user分页增加userType字段

test
smallchill 4 years ago
parent
commit
42e1bba148
  1. 3
      blade-service/blade-user/src/main/java/org/springblade/system/user/mapper/UserMapper.xml

3
blade-service/blade-user/src/main/java/org/springblade/system/user/mapper/UserMapper.xml

@ -41,6 +41,9 @@
<if test="user.realName!=null and user.realName != ''">
and real_name = #{user.realName}
</if>
<if test="user.userType!=null and user.userType != ''">
and user_type = #{user.userType}
</if>
<if test="deptIdList!=null and deptIdList.size>0">
and id in (
SELECT

Loading…
Cancel
Save