|
@@ -0,0 +1,56 @@
|
|
|
|
+package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 类注释
|
|
|
|
+ *
|
|
|
|
+ * @author WANGWEI
|
|
|
|
+ * @date 2018年5月29日
|
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
|
+ */
|
|
|
|
+public class GetPrivilegesReq extends BaseRequest {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 4560605753913614535L;
|
|
|
|
+
|
|
|
|
+ private String userType;
|
|
|
|
+
|
|
|
|
+ private String userId;
|
|
|
|
+
|
|
|
|
+ private String appId;
|
|
|
|
+
|
|
|
|
+ private String groupId;
|
|
|
|
+
|
|
|
|
+ public String getUserType() {
|
|
|
|
+ return userType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUserType(String userType) {
|
|
|
|
+ this.userType = userType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getUserId() {
|
|
|
|
+ return userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUserId(String userId) {
|
|
|
|
+ this.userId = userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getAppId() {
|
|
|
|
+ return appId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAppId(String appId) {
|
|
|
|
+ this.appId = appId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getGroupId() {
|
|
|
|
+ return groupId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGroupId(String groupId) {
|
|
|
|
+ this.groupId = groupId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|