xuxiuxi
2017-04-10 44b0e9b6d38a03579e060354ef181ea75fdaa4dd
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 {
@@ -25,6 +27,14 @@
   private String mobilePhone;
   // 
   private String type;
   //
   private String gender;
   //
   private String identityType;
   //
   private String birthday;
   //
   private String countryName;
   /**
    * Get 人员主键
@@ -180,11 +190,69 @@
      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      ;
                  ",移动电话 =" + mobilePhone +  ", ="     + type       +  ", ="     + gender     +
                  ", ="     + identityType +  ", ="     + birthday   +  ", ="     + countryName
            ;
   }
}