Commit 77c36f521efa2e8f1af6ba2694ad96f58fa5aabe
1 parent
2debc90fea
Exists in
master
and in
8 other branches
platform permission
用户查询 根据角色
Showing 2 changed files with 2 additions and 2 deletions
platform-biz-service/src/main/resources/mainOrm/Users.xml
View file @
77c36f5
| ... | ... | @@ -222,6 +222,7 @@ |
| 222 | 222 | </if> |
| 223 | 223 | <if test="yn != null"> |
| 224 | 224 | and u.yn = #{yn,jdbcType=INTEGER} |
| 225 | + and ur.yn = #{yn,jdbcType=INTEGER} | |
| 225 | 226 | </if> |
| 226 | 227 | <if test="type != null"> |
| 227 | 228 | and u.type = #{type,jdbcType=INTEGER} |
| ... | ... | @@ -255,6 +256,7 @@ |
| 255 | 256 | </if> |
| 256 | 257 | <if test="yn != null and yn != ''"> |
| 257 | 258 | and u.yn = #{yn,jdbcType=INTEGER} |
| 259 | + and ur.yn = #{yn,jdbcType=INTEGER} | |
| 258 | 260 | </if> |
| 259 | 261 | <if test="type != null "> |
| 260 | 262 | and u.type = #{type,jdbcType=INTEGER} |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BasicConfigUpdateRequest.java
View file @
77c36f5