xuxiuxi
2017-04-19 a9c8b39ffcb8f8a5f922cb0fce18861b3463d438
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Device.java
@@ -21,7 +21,7 @@
      /**
       * 公司主键
       */
      public static final String companyId = "companyId";
      public static final String deviceCompanyId = "deviceCompanyId";
      /**
       * 设备地点
       */
@@ -35,7 +35,7 @@
   // 设备主键
   private String deviceId;
   // 公司主键
   private String companyId;
   private String deviceCompanyId;
   // 设备地点
   private String deviceName;
   // 设备授权码
@@ -58,15 +58,15 @@
   /**
    * Get 公司主键
    */
   public String getCompanyId() {
      return companyId;
   public String getDeviceCompanyId() {
      return deviceCompanyId;
   }
   /**
    * Set 公司主键
    */
   public void setCompanyId(String companyId) {
      this.companyId = companyId;
   public void setDeviceCompanyId(String deviceCompanyId) {
      this.deviceCompanyId = deviceCompanyId;
   }
   /**
@@ -99,7 +99,7 @@
   public String toString() {
      return 
          ",设备主键 =" + deviceId   +  ",公司主键 =" + companyId  +  ",设备地点 =" + deviceName +
          ",设备主键 =" + deviceId   +  ",公司主键 =" + deviceCompanyId  +  ",设备地点 =" + deviceName +
          ",设备授权码 ="+ authorizationId;
   }
}