From aa1e23c76caa063a337bfc265960cd826c6d6dbc Mon Sep 17 00:00:00 2001
From: xuxiuxi <xuxiuxi@454eff88-639b-444f-9e54-f578c98de674>
Date: 星期五, 21 七月 2017 12:18:27 +0800
Subject: [PATCH]
---
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java | 72 ++++++++++++++++++++++++++++++++----
1 files changed, 64 insertions(+), 8 deletions(-)
diff --git a/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java b/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java
index 19cc0f0..4c89ba0 100644
--- a/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java
+++ b/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java
@@ -17,7 +17,7 @@
/**
* 涓婚敭
*/
- public static final String id = "id";
+ public static final String dictId = "dictId";
/**
* 缂栫爜
*/
@@ -42,10 +42,24 @@
* 澶囨敞
*/
public static final String remark = "remark";
+ /**
+ * 鍏徃涓婚敭
+ */
+ public static final String compnayId = "compnayId";
+
+ /**
+ * 鍚屾鏃堕棿
+ */
+ public static final String updateTime="update_time";
+
+ /**
+ * 鏄惁鍚屾
+ */
+ public static final String isSynchron="is_synchron";
}
// 涓婚敭
- private String id;
+ private String dictId;
// 缂栫爜
private String sn;
// 鍚嶇О
@@ -58,19 +72,47 @@
private String pid;
// 澶囨敞
private String remark;
+ // 鍏徃涓婚敭
+ private String compnayId;
+
+
+ //鍚屾鏃堕棿
+ private String updateTime;
+
+ //鏄惁鍚屾
+ private String isSynchron;
+
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime;
+ }
+
+ public String getIsSynchron() {
+ return isSynchron;
+ }
+
+ public void setIsSynchron(String isSynchron) {
+ this.isSynchron = isSynchron;
+ }
+
+
/**
* Get 涓婚敭
*/
- public String getId() {
- return id;
+ public String getDictId() {
+ return dictId;
}
/**
* Set 涓婚敭
*/
- public void setId(String id) {
- this.id = id;
+ public void setDictId(String dictId) {
+ this.dictId = dictId;
}
/**
@@ -157,10 +199,24 @@
this.remark = remark;
}
+ /**
+ * Get 鍏徃涓婚敭
+ */
+ public String getCompnayId() {
+ return compnayId;
+ }
+
+ /**
+ * Set 鍏徃涓婚敭
+ */
+ public void setCompnayId(String compnayId) {
+ this.compnayId = compnayId;
+ }
+
public String toString() {
return
- ",涓婚敭 =" + id + ",缂栫爜 =" + sn + ",鍚嶇О =" + name +
+ ",涓婚敭 =" + dictId + ",缂栫爜 =" + sn + ",鍚嶇О =" + name +
",绫诲瀷 =" + type + ",鎺掑簭 =" + orderBy + ",鐖剁骇id =" + pid +
- ",澶囨敞 =" + remark ;
+ ",澶囨敞 =" + remark + ",鍏徃涓婚敭 =" + compnayId ;
}
}
--
Gitblit v1.8.0