|
@@ -23,6 +23,8 @@ public class AddUserReq extends BaseRequest {
|
|
|
|
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
+ private String phoneNumber;
|
|
|
|
+
|
|
private List<String> roleCodeList;
|
|
private List<String> roleCodeList;
|
|
|
|
|
|
public Long getRootOrgId() {
|
|
public Long getRootOrgId() {
|
|
@@ -65,4 +67,11 @@ public class AddUserReq extends BaseRequest {
|
|
this.roleCodeList = roleCodeList;
|
|
this.roleCodeList = roleCodeList;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getPhoneNumber() {
|
|
|
|
+ return phoneNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPhoneNumber(String phoneNumber) {
|
|
|
|
+ this.phoneNumber = phoneNumber;
|
|
|
|
+ }
|
|
}
|
|
}
|