xuxiuxi
2017-04-19 a9c8b39ffcb8f8a5f922cb0fce18861b3463d438
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Dictionary.java
@@ -17,7 +17,7 @@
      /**
       * 主键
       */
      public static final String id = "id";
      public static final String dictId = "dictId";
      /**
       * 编码
       */
@@ -42,10 +42,14 @@
       * 备注
       */
      public static final String remark = "remark";
      /**
       * 公司主键
       */
      public static final String compnayId = "compnayId";
   }
   // 主键
   private String id;
   private String dictId;
   // 编码
   private String sn;
   // 名称
@@ -58,19 +62,21 @@
   private String pid;
   // 备注
   private String remark;
   // 公司主键
   private String compnayId;
   /**
    * Get 主键
    */
   public String getId() {
      return id;
   public String getDictId() {
      return dictId;
   }
   /**
    * Set 主键
    */
   public void setId(String id) {
      this.id = id;
   public void setDictId(String dictId) {
      this.dictId = dictId;
   }
   /**
@@ -157,10 +163,24 @@
      this.remark = remark;
   }
   /**
    * Get 公司主键
    */
   public String getCompnayId() {
      return compnayId;
   }
   /**
    * Set 公司主键
    */
   public void setCompnayId(String compnayId) {
      this.compnayId = compnayId;
   }
   public String toString() {
      return 
          ",主键 ="   + id         +  ",编码 ="   + sn         +  ",名称 ="   + name       +
          ",主键 ="   + dictId     +  ",编码 ="   + sn         +  ",名称 ="   + name       +
          ",类型 ="   + type       +  ",排序 ="   + orderBy    +  ",父级id =" + pid        + 
          ",备注 ="   + remark    ;
          ",备注 ="   + remark     +  ",公司主键 =" + compnayId ;
   }
}