Skip to content

Commit

Permalink
Merge pull request #95 from fcfang123/issue-94
Browse files Browse the repository at this point in the history
feat:获取分级管理员的用户组列表 筛选优化 #2583
  • Loading branch information
mingshewhe authored Apr 11, 2024
2 parents d66206b + c7ce9d4 commit d83e8ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext {
set('lombokVersion', '1.18.10')
set("junitVersion", "5.4.2")

String iamVersion = (System.getProperty("iamVersion") ?: "1.0.48")
String iamVersion = (System.getProperty("iamVersion") ?: "1.0.49")
if (System.getProperty("snapshot") == "true") {
set('iamVersion', iamVersion + "-SNAPSHOT")
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
@Data
@Builder
public class SearchGroupDTO {
/*分级管理员是否继承查询子集管理员的用户组, 默认是*/
/*该值若为true,会查询所有的用户组;若为false,只会查询分级管理员级别的用户组,不包含二级管理员的用户组,不填默认true*/
private Boolean inherit;
/*该值若为true,会查询所有的用户组,若为false,只会查询二级管理员的用户组的组*/
@JsonProperty("only_inherit")
private String onlyInherit;
/*操作id筛选, 只支持自定义操作*/
@JsonProperty("action_id")
private String actionId;
Expand Down

0 comments on commit d83e8ad

Please sign in to comment.