We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c28bf commit 82c1b49Copy full SHA for 82c1b49
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>cn.authing</groupId>
8
<artifactId>authing-java-sdk</artifactId>
9
- <version>3.0.17</version>
+ <version>3.0.18</version>
10
11
<name>Authing Java SDK</name>
12
<description>java backend sdk for authing</description>
src/main/java/cn/authing/sdk/java/dto/UserDepartmentRespDto.java
@@ -204,6 +204,11 @@ public void setDepartmentNamePath(List<String> departmentNamePath) {
204
this.departmentNamePath = departmentNamePath;
205
}
206
207
+ public Boolean getRoot() {
208
+ return isRoot;
209
+ }
210
-
211
+ public void setRoot(Boolean root) {
212
+ isRoot = root;
213
214
0 commit comments