xuxiuxi
2017-07-10 d6119c2d7fe2f802dd224d77bf2d95eeeedb4526
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Department.java
@@ -17,69 +17,69 @@
      /**
       * 部门主键
       */
      public static final String id = "id";
      public static final String deptId = "deptId";
      /**
       * 部门名称
       */
      public static final String label = "label";
      public static final String deptName = "deptName";
      /**
       * 部门首字母
       */
      public static final String labelSpell = "labelSpell";
      public static final String deptNameEn = "deptNameEn";
   }
   // 部门主键
   private Integer id;
   private String deptId;
   // 部门名称
   private String label;
   private String deptName;
   // 部门首字母
   private String labelSpell;
   private String deptNameEn;
   /**
    * Get 部门主键
    */
   public Integer getId() {
      return id;
   public String getDeptId() {
      return deptId;
   }
   /**
    * Set 部门主键
    */
   public void setId(Integer id) {
      this.id = id;
   public void setDeptId(String deptId) {
      this.deptId = deptId;
   }
   /**
    * Get 部门名称
    */
   public String getLabel() {
      return label;
   public String getDeptName() {
      return deptName;
   }
   /**
    * Set 部门名称
    */
   public void setLabel(String label) {
      this.label = label;
   public void setDeptName(String deptName) {
      this.deptName = deptName;
   }
   /**
    * Get 部门首字母
    */
   public String getLabelSpell() {
      return labelSpell;
   public String getDeptNameEn() {
      return deptNameEn;
   }
   /**
    * Set 部门首字母
    */
   public void setLabelSpell(String labelSpell) {
      this.labelSpell = labelSpell;
   public void setDeptNameEn(String deptNameEn) {
      this.deptNameEn = deptNameEn;
   }
   public String toString() {
      return 
          ",部门主键 =" + id         +  ",部门名称 =" + label      +  ",部门首字母 ="+ labelSpell
          ",部门主键 =" + deptId     +  ",部门名称 =" + deptName   +  ",部门首字母 ="+ deptNameEn
         ;
   }
}