xuxiuxi
2017-04-20 d2f697fa887e28b86d38332e2fbde930c54fb43f
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,26 @@
   private String postName;
   // 移动电话
   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;
   /**
    * Get 人员主键
@@ -32,7 +52,7 @@
   public String getRegisterId() {
      return registerId;
   }
   /**
    * Set 人员主键
    */
@@ -46,7 +66,7 @@
   public String getUsername() {
      return username;
   }
   /**
    * Set 人员名字
    */
@@ -60,7 +80,7 @@
   public String getImagePath() {
      return imagePath;
   }
   /**
    * Set 图片地址
    */
@@ -74,7 +94,7 @@
   public String getCompanyName() {
      return companyName;
   }
   /**
    * Set 公司名称
    */
@@ -88,7 +108,7 @@
   public String getTel() {
      return tel;
   }
   /**
    * Set 座机电话
    */
@@ -102,7 +122,7 @@
   public String getIdentifyNum() {
      return identifyNum;
   }
   /**
    * Set 证件编号
    */
@@ -116,7 +136,7 @@
   public String getDeptName() {
      return deptName;
   }
   /**
    * Set 部门名称
    */
@@ -130,7 +150,7 @@
   public String getCompanyId() {
      return companyId;
   }
   /**
    * Set 公司主键
    */
@@ -144,7 +164,7 @@
   public String getPostName() {
      return postName;
   }
   /**
    * Set 职位名称
    */
@@ -158,7 +178,7 @@
   public String getMobilePhone() {
      return mobilePhone;
   }
   /**
    * Set 移动电话
    */
@@ -167,24 +187,153 @@
   }
   /**
    * 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;
   }
   /**
    * 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;
   }
   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 +
                  ", ="     + visitee    +  ", ="     + visitReason +  ", ="     + enterTime  +
                  ", ="     + exitTime   +  ", ="     + currentStatus;
   }
}