From 5cb596ad347e23be44e032c2dd042253b13b27d9 Mon Sep 17 00:00:00 2001 From: qvyuanxin <qvyuanxin@454eff88-639b-444f-9e54-f578c98de674> Date: 星期四, 20 七月 2017 17:59:33 +0800 Subject: [PATCH] --- VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java | 84 +++++++++++++++++++++++++++++++++++------- 1 files changed, 70 insertions(+), 14 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 3513b49..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 Integer id; + private String dictId; // 缂栫爜 private String sn; // 鍚嶇О @@ -53,24 +67,52 @@ // 绫诲瀷 private String type; // 鎺掑簭 - private Integer orderBy; + private String orderBy; // 鐖剁骇id - private Integer pid; + 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 Integer getId() { - return id; + public String getDictId() { + return dictId; } /** * Set 涓婚敭 */ - public void setId(Integer id) { - this.id = id; + public void setDictId(String dictId) { + this.dictId = dictId; } /** @@ -118,28 +160,28 @@ /** * Get 鎺掑簭 */ - public Integer getOrderBy() { + public String getOrderBy() { return orderBy; } /** * Set 鎺掑簭 */ - public void setOrderBy(Integer orderBy) { + public void setOrderBy(String orderBy) { this.orderBy = orderBy; } /** * Get 鐖剁骇id */ - public Integer getPid() { + public String getPid() { return pid; } /** * Set 鐖剁骇id */ - public void setPid(Integer pid) { + public void setPid(String pid) { this.pid = pid; } @@ -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