Skip to content

Commit

Permalink
Merge pull request #83 from fcfang123/issue-82
Browse files Browse the repository at this point in the history
feat:校验用户/部门是否属于组,增加出参 #82
  • Loading branch information
mingshewhe authored Dec 20, 2023
2 parents 02f8c17 + 13b304c commit b4a61b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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.41")
String iamVersion = (System.getProperty("iamVersion") ?: "1.0.42")
if (System.getProperty("snapshot") == "true") {
set('iamVersion', iamVersion + "-SNAPSHOT")
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ public class GroupMemberVerifyInfo {
* */
@JsonProperty("created_at")
private String createdAt;
/*
* 是否直接加入
* */
@JsonProperty("is_direct_added")
private String directAdded;
}

0 comments on commit b4a61b8

Please sign in to comment.