xuxiuxi
2017-05-11 109ffe9a777658936a38d0c146579a67c60a0d17
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/PhoneCallQueryItem.java
@@ -3,139 +3,79 @@
public class PhoneCallQueryItem {
   // 人员主键
   private String id;
   // 人员名字
   private String name;
   // 图片地址
   private String imagePath;
   // 公司名称
   private String companyName;
   // 座机电话
   private String tel;
   // 证件编号
   private String identifyNum;
   private String caller;
   // 人员名字
   private String callee;
   // 部门名称
   private String deptName;
   // 公司主键
   private String companyId;
   private String callerDept;
   // 部门名称
   private String calleeDept;
   // 职位名称
   private String postName;
   // 监控图片
   private String callerImage;
   // 监控图片
   private String calleeImage;
   // 移动电话
   private String mobilePhone;
   //
   private String type;
   /**
    * Get 人员主键
    */
   public String getId() {
      return id;
   }
   /**
    * Set 人员主键
    */
   public void setId(String id) {
      this.id = id;
   }
   // 座机电话
   private String tel;
   /**
    * Get 人员名字
    */
   public String getName() {
      return name;
   public String getCaller() {
      return caller;
   }
   
   /**
    * Set 人员名字
    */
   public void setName(String name) {
      this.name = name;
   public void setCaller(String caller) {
      this.caller = caller;
   }
   /**
    * Get 图片地址
    * Get 人员名字
    */
   public String getImagePath() {
      return imagePath;
   public String getCallee() {
      return callee;
   }
   
   /**
    * Set 图片地址
    * Set 人员名字
    */
   public void setImagePath(String imagePath) {
      this.imagePath = imagePath;
   }
   /**
    * Get 公司名称
    */
   public String getCompanyName() {
      return companyName;
   }
   /**
    * Set 公司名称
    */
   public void setCompanyName(String companyName) {
      this.companyName = companyName;
   }
   /**
    * Get 座机电话
    */
   public String getTel() {
      return tel;
   }
   /**
    * Set 座机电话
    */
   public void setTel(String tel) {
      this.tel = tel;
   }
   /**
    * Get 证件编号
    */
   public String getIdentifyNum() {
      return identifyNum;
   }
   /**
    * Set 证件编号
    */
   public void setIdentifyNum(String identifyNum) {
      this.identifyNum = identifyNum;
   public void setCallee(String callee) {
      this.callee = callee;
   }
   /**
    * Get 部门名称
    */
   public String getDeptName() {
      return deptName;
   public String getCallerDept() {
      return callerDept;
   }
   
   /**
    * Set 部门名称
    */
   public void setDeptName(String deptName) {
      this.deptName = deptName;
   public void setCallerDept(String callerDept) {
      this.callerDept = callerDept;
   }
   /**
    * Get 公司主键
    * Get 部门名称
    */
   public String getCompanyId() {
      return companyId;
   public String getCalleeDept() {
      return calleeDept;
   }
   
   /**
    * Set 公司主键
    * Set 部门名称
    */
   public void setCompanyId(String companyId) {
      this.companyId = companyId;
   public void setCalleeDept(String calleeDept) {
      this.calleeDept = calleeDept;
   }
   /**
@@ -153,6 +93,34 @@
   }
   /**
    * Get 监控图片
    */
   public String getCallerImage() {
      return callerImage;
   }
   /**
    * Set 监控图片
    */
   public void setCallerImage(String callerImage) {
      this.callerImage = callerImage;
   }
   /**
    * Get 监控图片
    */
   public String getCalleeImage() {
      return calleeImage;
   }
   /**
    * Set 监控图片
    */
   public void setCalleeImage(String calleeImage) {
      this.calleeImage = calleeImage;
   }
   /**
    * Get 移动电话
    */
   public String getMobilePhone() {
@@ -167,24 +135,24 @@
   }
   /**
    * Get
    * Get 座机电话
    */
   public String getType() {
      return type;
   public String getTel() {
      return tel;
   }
   
   /**
    * Set
    * Set 座机电话
    */
   public void setType(String type) {
      this.type = type;
   public void setTel(String tel) {
      this.tel = tel;
   }
   public String toString() {
      return 
          ",人员主键 =" + id         +  ",人员名字 =" + name       +  ",图片地址 =" + imagePath  +
          ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum +
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
          ",移动电话 =" + mobilePhone +  ", ="     + type      ;
          ",人员名字 =" + caller     +  ",人员名字 =" + callee     +  ",部门名称 =" + callerDept +
          ",部门名称 =" + calleeDept +  ",职位名称 =" + postName   +  ",监控图片 =" + callerImage +
          ",监控图片 =" + calleeImage +  ",移动电话 =" + mobilePhone +  ",座机电话 =" + tel
         ;
   }
}