From 44b0e9b6d38a03579e060354ef181ea75fdaa4dd Mon Sep 17 00:00:00 2001 From: xuxiuxi <xuxiuxi@454eff88-639b-444f-9e54-f578c98de674> Date: 星期一, 10 四月 2017 14:40:48 +0800 Subject: [PATCH] --- VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java | 106 +++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 87 insertions(+), 19 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..3d4ca4a 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 { @@ -23,8 +25,16 @@ private String postName; // 绉诲姩鐢佃瘽 private String mobilePhone; - // + // private String type; + // + private String gender; + // + private String identityType; + // + private String birthday; + // + private String countryName; /** * Get 浜哄憳涓婚敭 @@ -32,7 +42,7 @@ public String getRegisterId() { return registerId; } - + /** * Set 浜哄憳涓婚敭 */ @@ -46,7 +56,7 @@ public String getUsername() { return username; } - + /** * Set 浜哄憳鍚嶅瓧 */ @@ -60,7 +70,7 @@ public String getImagePath() { return imagePath; } - + /** * Set 鍥剧墖鍦板潃 */ @@ -74,7 +84,7 @@ public String getCompanyName() { return companyName; } - + /** * Set 鍏徃鍚嶇О */ @@ -88,7 +98,7 @@ public String getTel() { return tel; } - + /** * Set 搴ф満鐢佃瘽 */ @@ -102,7 +112,7 @@ public String getIdentifyNum() { return identifyNum; } - + /** * Set 璇佷欢缂栧彿 */ @@ -116,7 +126,7 @@ public String getDeptName() { return deptName; } - + /** * Set 閮ㄩ棬鍚嶇О */ @@ -130,7 +140,7 @@ public String getCompanyId() { return companyId; } - + /** * Set 鍏徃涓婚敭 */ @@ -144,7 +154,7 @@ public String getPostName() { return postName; } - + /** * Set 鑱屼綅鍚嶇О */ @@ -158,7 +168,7 @@ public String getMobilePhone() { return mobilePhone; } - + /** * Set 绉诲姩鐢佃瘽 */ @@ -167,24 +177,82 @@ } /** - * Get + * Get */ public String getType() { return type; } - + /** - * Set + * Set */ public void setType(String type) { 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; + } + public String toString() { - return - ",浜哄憳涓婚敭 =" + registerId + ",浜哄憳鍚嶅瓧 =" + username + ",鍥剧墖鍦板潃 =" + imagePath + - ",鍏徃鍚嶇О =" + companyName + ",搴ф満鐢佃瘽 =" + tel + ",璇佷欢缂栧彿 =" + identifyNum + - ",閮ㄩ棬鍚嶇О =" + deptName + ",鍏徃涓婚敭 =" + companyId + ",鑱屼綅鍚嶇О =" + postName + - ",绉诲姩鐢佃瘽 =" + mobilePhone + ", =" + type ; + return + ",浜哄憳涓婚敭 =" + registerId + ",浜哄憳鍚嶅瓧 =" + username + ",鍥剧墖鍦板潃 =" + imagePath + + ",鍏徃鍚嶇О =" + companyName + ",搴ф満鐢佃瘽 =" + tel + ",璇佷欢缂栧彿 =" + identifyNum + + ",閮ㄩ棬鍚嶇О =" + deptName + ",鍏徃涓婚敭 =" + companyId + ",鑱屼綅鍚嶇О =" + postName + + ",绉诲姩鐢佃瘽 =" + mobilePhone + ", =" + type + ", =" + gender + + ", =" + identityType + ", =" + birthday + ", =" + countryName + ; } } -- Gitblit v1.8.0