瀏覽代碼

。。。

wangwei 7 年之前
父節點
當前提交
2ba05430aa

+ 10 - 0
examcloud-core-basic-api/src/main/java/cn/com/qmth/examcloud/core/basic/api/request/AddUserReq.java

@@ -21,6 +21,8 @@ public class AddUserReq extends BaseRequest {
 
 
 	private String password;
 	private String password;
 
 
+	private String name;
+
 	private List<String> roleCodeList;
 	private List<String> roleCodeList;
 
 
 	public Long getRootOrgId() {
 	public Long getRootOrgId() {
@@ -47,6 +49,14 @@ public class AddUserReq extends BaseRequest {
 		this.password = password;
 		this.password = password;
 	}
 	}
 
 
+	public String getName() {
+		return name;
+	}
+
+	public void setName(String name) {
+		this.name = name;
+	}
+
 	public List<String> getRoleCodeList() {
 	public List<String> getRoleCodeList() {
 		return roleCodeList;
 		return roleCodeList;
 	}
 	}