|
@@ -1,49 +1,36 @@
|
|
-package cn.com.qmth.examcloud.examwork.api.response;
|
|
|
|
-
|
|
|
|
-import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
|
-
|
|
|
|
-public class GetExamPropertyResp extends BaseResponse {
|
|
|
|
-
|
|
|
|
- private static final long serialVersionUID = 606999493938772517L;
|
|
|
|
-
|
|
|
|
- private Boolean existing;
|
|
|
|
-
|
|
|
|
- private Long propertyId;
|
|
|
|
-
|
|
|
|
- private String key;
|
|
|
|
-
|
|
|
|
- private String value;
|
|
|
|
-
|
|
|
|
- public Boolean getExisting() {
|
|
|
|
- return existing;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setExisting(Boolean existing) {
|
|
|
|
- this.existing = existing;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getPropertyId() {
|
|
|
|
- return propertyId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPropertyId(Long propertyId) {
|
|
|
|
- this.propertyId = propertyId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getKey() {
|
|
|
|
- return key;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setKey(String key) {
|
|
|
|
- this.key = key;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getValue() {
|
|
|
|
- return value;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setValue(String value) {
|
|
|
|
- this.value = value;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
|
|
+package cn.com.qmth.examcloud.examwork.api.response;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 类注释
|
|
|
|
+ *
|
|
|
|
+ * @author WANGWEI
|
|
|
|
+ * @date 2018年8月21日
|
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
|
+ */
|
|
|
|
+public class GetExamPropertyResp extends BaseResponse {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 606999493938772517L;
|
|
|
|
+
|
|
|
|
+ private Boolean existing;
|
|
|
|
+
|
|
|
|
+ private String value;
|
|
|
|
+
|
|
|
|
+ public Boolean getExisting() {
|
|
|
|
+ return existing;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExisting(Boolean existing) {
|
|
|
|
+ this.existing = existing;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getValue() {
|
|
|
|
+ return value;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setValue(String value) {
|
|
|
|
+ this.value = value;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|