File tree Expand file tree Collapse file tree 6 files changed +18
-18
lines changed
src/main/java/cn/authing/sdk/java/dto Expand file tree Collapse file tree 6 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public class CreateDepartmentReqDto {
6565 * 岗位 id 列表
6666 */
6767 @ JsonProperty ("postIdList" )
68- private String postIdList ;
68+ private List < String > postIdList ;
6969 /**
7070 * 租户 ID
7171 */
@@ -149,10 +149,10 @@ public void setDepartmentIdType(DepartmentIdType departmentIdType) {
149149 this .departmentIdType = departmentIdType ;
150150 }
151151
152- public String getPostIdList () {
152+ public List < String > getPostIdList () {
153153 return postIdList ;
154154 }
155- public void setPostIdList (String postIdList ) {
155+ public void setPostIdList (List < String > postIdList ) {
156156 this .postIdList = postIdList ;
157157 }
158158
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public class CreateOrganizationReqDto {
4545 * 岗位 id 列表
4646 */
4747 @ JsonProperty ("postIdList" )
48- private String postIdList ;
48+ private List < String > postIdList ;
4949
5050 public Object getMetadata () {
5151 return metadata ;
@@ -96,10 +96,10 @@ public void setTenantId(String tenantId) {
9696 this .tenantId = tenantId ;
9797 }
9898
99- public String getPostIdList () {
99+ public List < String > getPostIdList () {
100100 return postIdList ;
101101 }
102- public void setPostIdList (String postIdList ) {
102+ public void setPostIdList (List < String > postIdList ) {
103103 this .postIdList = postIdList ;
104104 }
105105
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public class DepartmentDto {
8585 * 岗位 id 列表
8686 */
8787 @ JsonProperty ("postIdList" )
88- private String postIdList ;
88+ private List < String > postIdList ;
8989
9090 public String getOrganizationCode () {
9191 return organizationCode ;
@@ -192,10 +192,10 @@ public void setCustomData(Object customData) {
192192 this .customData = customData ;
193193 }
194194
195- public String getPostIdList () {
195+ public List < String > getPostIdList () {
196196 return postIdList ;
197197 }
198- public void setPostIdList (String postIdList ) {
198+ public void setPostIdList (List < String > postIdList ) {
199199 this .postIdList = postIdList ;
200200 }
201201
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public class OrganizationDto {
8080 * 岗位 id 列表
8181 */
8282 @ JsonProperty ("postIdList" )
83- private String postIdList ;
83+ private List < String > postIdList ;
8484
8585 public String getOrganizationCode () {
8686 return organizationCode ;
@@ -180,10 +180,10 @@ public void setTenantId(String tenantId) {
180180 this .tenantId = tenantId ;
181181 }
182182
183- public String getPostIdList () {
183+ public List < String > getPostIdList () {
184184 return postIdList ;
185185 }
186- public void setPostIdList (String postIdList ) {
186+ public void setPostIdList (List < String > postIdList ) {
187187 this .postIdList = postIdList ;
188188 }
189189
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public class UpdateDepartmentReqDto {
6060 * 岗位 id 列表
6161 */
6262 @ JsonProperty ("postIdList" )
63- private String postIdList ;
63+ private List < String > postIdList ;
6464 /**
6565 * 租户 ID
6666 */
@@ -137,10 +137,10 @@ public void setCustomData(Object customData) {
137137 this .customData = customData ;
138138 }
139139
140- public String getPostIdList () {
140+ public List < String > getPostIdList () {
141141 return postIdList ;
142142 }
143- public void setPostIdList (String postIdList ) {
143+ public void setPostIdList (List < String > postIdList ) {
144144 this .postIdList = postIdList ;
145145 }
146146
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public class UpdateOrganizationReqDto {
5050 * 岗位 id 列表
5151 */
5252 @ JsonProperty ("postIdList" )
53- private String postIdList ;
53+ private List < String > postIdList ;
5454
5555 public String getOrganizationCode () {
5656 return organizationCode ;
@@ -108,10 +108,10 @@ public void setOrganizationName(String organizationName) {
108108 this .organizationName = organizationName ;
109109 }
110110
111- public String getPostIdList () {
111+ public List < String > getPostIdList () {
112112 return postIdList ;
113113 }
114- public void setPostIdList (String postIdList ) {
114+ public void setPostIdList (List < String > postIdList ) {
115115 this .postIdList = postIdList ;
116116 }
117117
You can’t perform that action at this time.
0 commit comments