From 109ffe9a777658936a38d0c146579a67c60a0d17 Mon Sep 17 00:00:00 2001 From: xuxiuxi <xuxiuxi@454eff88-639b-444f-9e54-f578c98de674> Date: 星期四, 11 五月 2017 17:48:48 +0800 Subject: [PATCH] --- VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java | 186 ++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 176 insertions(+), 10 deletions(-) diff --git a/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java b/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java index 8cf3a42..a5c34ae 100644 --- a/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java +++ b/VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java @@ -1,5 +1,7 @@ package cn.com.basic.face.discern.query.item; +import java.util.Date; + public class VisitQueryItem { @@ -7,8 +9,8 @@ private String registerId; // 浜哄憳鍚嶅瓧 private String username; - // 鍥剧墖鍦板潃 - private String imagePath; + // 鐩戞帶鍥剧墖 + private String surveillancePhoto; // 鍏徃鍚嶇О private String companyName; // 搴ф満鐢佃瘽 @@ -25,6 +27,26 @@ private String mobilePhone; // private String type; + // + private String gender; + // + private String identityType; + // + private String birthday; + // + private String countryName; + // + private String visitee; + // + private String visitReason; + // + private String enterTime; + // + private String exitTime; + // + private String currentStatus; + // + private String idCardPhoto; /** * Get 浜哄憳涓婚敭 @@ -55,17 +77,17 @@ } /** - * Get 鍥剧墖鍦板潃 + * Get 鐩戞帶鍥剧墖 */ - public String getImagePath() { - return imagePath; + public String getSurveillancePhoto() { + return surveillancePhoto; } /** - * Set 鍥剧墖鍦板潃 + * Set 鐩戞帶鍥剧墖 */ - public void setImagePath(String imagePath) { - this.imagePath = imagePath; + public void setSurveillancePhoto(String surveillancePhoto) { + this.surveillancePhoto = surveillancePhoto; } /** @@ -180,11 +202,155 @@ this.type = type; } + /** + * Get + */ + public String getGender() { + return gender; + } + + /** + * Set + */ + public void setGender(String gender) { + this.gender = gender; + } + + /** + * Get + */ + public String getIdentityType() { + return identityType; + } + + /** + * Set + */ + public void setIdentityType(String identityType) { + this.identityType = identityType; + } + + /** + * Get + */ + public String getBirthday() { + return birthday; + } + + /** + * Set + */ + public void setBirthday(String birthday) { + this.birthday = birthday; + } + + /** + * Get + */ + public String getCountryName() { + return countryName; + } + + /** + * Set + */ + public void setCountryName(String countryName) { + this.countryName = countryName; + } + + /** + * Get + */ + public String getVisitee() { + return visitee; + } + + /** + * Set + */ + public void setVisitee(String visitee) { + this.visitee = visitee; + } + + /** + * Get + */ + public String getVisitReason() { + return visitReason; + } + + /** + * Set + */ + public void setVisitReason(String visitReason) { + this.visitReason = visitReason; + } + + /** + * Get + */ + public String getEnterTime() { + return enterTime; + } + + /** + * Set + */ + public void setEnterTime(String enterTime) { + this.enterTime = enterTime; + } + + /** + * Get + */ + public String getExitTime() { + return exitTime; + } + + /** + * Set + */ + public void setExitTime(String exitTime) { + this.exitTime = exitTime; + } + + /** + * Get + */ + public String getCurrentStatus() { + return currentStatus; + } + + /** + * Set + */ + public void setCurrentStatus(String currentStatus) { + this.currentStatus = currentStatus; + } + + /** + * Get + */ + public String getIdCardPhoto() { + return idCardPhoto; + } + + /** + * Set + */ + public void setIdCardPhoto(String idCardPhoto) { + this.idCardPhoto = idCardPhoto; + } + public String toString() { return - ",浜哄憳涓婚敭 =" + registerId + ",浜哄憳鍚嶅瓧 =" + username + ",鍥剧墖鍦板潃 =" + imagePath + + ",浜哄憳涓婚敭 =" + registerId + ",浜哄憳鍚嶅瓧 =" + username + ",鐩戞帶鍥剧墖 =" + surveillancePhoto + ",鍏徃鍚嶇О =" + companyName + ",搴ф満鐢佃瘽 =" + tel + ",璇佷欢缂栧彿 =" + identifyNum + ",閮ㄩ棬鍚嶇О =" + deptName + ",鍏徃涓婚敭 =" + companyId + ",鑱屼綅鍚嶇О =" + postName + - ",绉诲姩鐢佃瘽 =" + mobilePhone + ", =" + type ; + ",绉诲姩鐢佃瘽 =" + mobilePhone + ", =" + type + ", =" + gender + + ", =" + identityType + ", =" + birthday + ", =" + countryName + + ", =" + visitee + ", =" + visitReason + ", =" + enterTime + + ", =" + exitTime + ", =" + currentStatus + ", =" + idCardPhoto + ; } } -- Gitblit v1.8.0