File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
src/main/java/cn/authing/sdk/java/dto Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ This SDK is built upon [Authing Management API(v3)](https://api.authing.cn/opena
2525 <dependency >
2626 <groupId >cn.authing</groupId >
2727 <artifactId >authing-java-sdk</artifactId >
28- <version >3.1.9 </version >
28+ <version >3.1.11 </version >
2929 </dependency >
3030```
3131
Original file line number Diff line number Diff line change 66
77 <groupId >cn.authing</groupId >
88 <artifactId >authing-java-sdk</artifactId >
9- <version >3.1.10 </version >
9+ <version >3.1.11 </version >
1010
1111 <name >Authing Java SDK</name >
1212 <description >java backend sdk for authing</description >
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public class DepartmentDto {
9090 * 部门关联的岗位
9191 */
9292 @ JsonProperty ("posts" )
93- private List <String > posts ;
93+ private List <PostDto > posts ;
9494 /**
9595 * 岗位 id 列表
9696 */
@@ -219,10 +219,10 @@ public void setCustomData(Object customData) {
219219 this .customData = customData ;
220220 }
221221
222- public List <String > getPosts () {
222+ public List <PostDto > getPosts () {
223223 return posts ;
224224 }
225- public void setPosts (List <String > posts ) {
225+ public void setPosts (List <PostDto > posts ) {
226226 this .posts = posts ;
227227 }
228228
You can’t perform that action at this time.
0 commit comments