|
@@ -0,0 +1,51 @@
|
|
|
+package com.sagacloud.pojos;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.alibaba.fastjson.support.spring.annotation.FastJsonFilter;
|
|
|
+
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Created by Xiaoyu on 2018/7/12
|
|
|
+ */
|
|
|
+
|
|
|
+public class PropertyObj {
|
|
|
+ private String id;
|
|
|
+ private String family;
|
|
|
+ private Map<String,String> relation;
|
|
|
+ private Map<String,Object> infos;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFamily() {
|
|
|
+ return family;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFamily(String family) {
|
|
|
+ this.family = family;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, String> getRelation() {
|
|
|
+ return relation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelation(Map<String, String> relation) {
|
|
|
+ this.relation = relation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Map<String, Object> getInfos() {
|
|
|
+ return infos;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInfos(Map<String, Object> infos) {
|
|
|
+ this.infos = infos;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|