xuxiuxi
2017-03-28 d47d76dc4c2ccd440514a6837ed04d95ba3bdc63
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitorQueryItem.java
@@ -4,7 +4,7 @@
public class VisitorQueryItem {
   // 人员主键
   private Integer id;
   private String id;
   // 人员名字
   private String name;
   // 图片地址
@@ -15,18 +15,26 @@
   private String phone;
   // 证件编号
   private String identify;
   // 部门名称
   private String deptName;
   // 公司主键
   private String companyId;
   // 职位主键
   private String postName;
   // 移动电话
   private String mobilePhone;
   /**
    * Get 人员主键
    */
   public Integer getId() {
   public String getId() {
      return id;
   }
   
   /**
    * Set 人员主键
    */
   public void setId(Integer id) {
   public void setId(String id) {
      this.id = id;
   }
@@ -100,10 +108,67 @@
      this.identify = identify;
   }
   /**
    * Get 部门名称
    */
   public String getDeptName() {
      return deptName;
   }
   /**
    * Set 部门名称
    */
   public void setDeptName(String deptName) {
      this.deptName = deptName;
   }
   /**
    * Get 公司主键
    */
   public String getCompanyId() {
      return companyId;
   }
   /**
    * Set 公司主键
    */
   public void setCompanyId(String companyId) {
      this.companyId = companyId;
   }
   /**
    * Get 职位主键
    */
   public String getPostName() {
      return postName;
   }
   /**
    * Set 职位主键
    */
   public void setPostName(String postName) {
      this.postName = postName;
   }
   /**
    * Get 移动电话
    */
   public String getMobilePhone() {
      return mobilePhone;
   }
   /**
    * Set 移动电话
    */
   public void setMobilePhone(String mobilePhone) {
      this.mobilePhone = mobilePhone;
   }
   public String toString() {
      return 
          ",人员主键 =" + id         +  ",人员名字 =" + name       +  ",图片地址 =" + imagePath  + 
          ",公司名称 =" + companyName +  ",座机电话 =" + phone      +  ",证件编号 =" + identify
         ;
          ",公司名称 =" + companyName +  ",座机电话 =" + phone      +  ",证件编号 =" + identify   +
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位主键 =" + postName   +
          ",移动电话 =" + mobilePhone;
   }
}