|
@@ -1,9 +1,30 @@
|
|
|
package cn.com.qmth.examcloud.support.cache.bean;
|
|
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.enums.BasicDataType;
|
|
|
import cn.com.qmth.examcloud.web.cache.RandomCacheBean;
|
|
|
|
|
|
public class SysPropertyCacheBean extends RandomCacheBean {
|
|
|
|
|
|
private static final long serialVersionUID = -8320620858676945769L;
|
|
|
|
|
|
+ private BasicDataType valueType;
|
|
|
+
|
|
|
+ private Object value;
|
|
|
+
|
|
|
+ public BasicDataType getValueType() {
|
|
|
+ return valueType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setValueType(BasicDataType valueType) {
|
|
|
+ this.valueType = valueType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Object getValue() {
|
|
|
+ return value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setValue(Object value) {
|
|
|
+ this.value = value;
|
|
|
+ }
|
|
|
+
|
|
|
}
|