xuxiuxi
2017-06-02 3cceac30dc1c5a7cf5bd4f95e327e855cdcf304d
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/DeviceQueryItem.java
@@ -3,74 +3,254 @@
public class DeviceQueryItem {
   // 设备主键
   //
   private String deviceId;
   // 公司主键
   private String deviceCompanyId;
   // 设备地点
   //
   private String companyId;
   //
   private String deviceName;
   // 设备授权码
   private String authorizationId;
   //
   private String type;
   //
   private String address;
   //
   private String schoolName;
   //
   private String brandId;
   //
   private String ip;
   //
   private String port;
   //
   private String resolutionId;
   //
   private String username;
   //
   private String password;
   //
   private String protocolId;
   //
   private String sn;
   //
   private String belongId;
   /**
    * Get 设备主键
    * Get
    */
   public String getDeviceId() {
      return deviceId;
   }
   
   /**
    * Set 设备主键
    * Set
    */
   public void setDeviceId(String deviceId) {
      this.deviceId = deviceId;
   }
   /**
    * Get 公司主键
    * Get
    */
   public String getDeviceCompanyId() {
      return deviceCompanyId;
   public String getCompanyId() {
      return companyId;
   }
   
   /**
    * Set 公司主键
    * Set
    */
   public void setDeviceCompanyId(String deviceCompanyId) {
      this.deviceCompanyId = deviceCompanyId;
   public void setCompanyId(String companyId) {
      this.companyId = companyId;
   }
   /**
    * Get 设备地点
    * Get
    */
   public String getDeviceName() {
      return deviceName;
   }
   
   /**
    * Set 设备地点
    * Set
    */
   public void setDeviceName(String deviceName) {
      this.deviceName = deviceName;
   }
   /**
    * Get 设备授权码
    * Get
    */
   public String getAuthorizationId() {
      return authorizationId;
   public String getType() {
      return type;
   }
   
   /**
    * Set 设备授权码
    * Set
    */
   public void setAuthorizationId(String authorizationId) {
      this.authorizationId = authorizationId;
   public void setType(String type) {
      this.type = type;
   }
   /**
    * Get
    */
   public String getAddress() {
      return address;
   }
   /**
    * Set
    */
   public void setAddress(String address) {
      this.address = address;
   }
   /**
    * Get
    */
   public String getSchoolName() {
      return schoolName;
   }
   /**
    * Set
    */
   public void setSchoolName(String schoolName) {
      this.schoolName = schoolName;
   }
   /**
    * Get
    */
   public String getBrandId() {
      return brandId;
   }
   /**
    * Set
    */
   public void setBrandId(String brandId) {
      this.brandId = brandId;
   }
   /**
    * Get
    */
   public String getIp() {
      return ip;
   }
   /**
    * Set
    */
   public void setIp(String ip) {
      this.ip = ip;
   }
   /**
    * Get
    */
   public String getPort() {
      return port;
   }
   /**
    * Set
    */
   public void setPort(String port) {
      this.port = port;
   }
   /**
    * Get
    */
   public String getResolutionId() {
      return resolutionId;
   }
   /**
    * Set
    */
   public void setResolutionId(String resolutionId) {
      this.resolutionId = resolutionId;
   }
   /**
    * Get
    */
   public String getUsername() {
      return username;
   }
   /**
    * Set
    */
   public void setUsername(String username) {
      this.username = username;
   }
   /**
    * Get
    */
   public String getPassword() {
      return password;
   }
   /**
    * Set
    */
   public void setPassword(String password) {
      this.password = password;
   }
   /**
    * Get
    */
   public String getProtocolId() {
      return protocolId;
   }
   /**
    * Set
    */
   public void setProtocolId(String protocolId) {
      this.protocolId = protocolId;
   }
   /**
    * Get
    */
   public String getSn() {
      return sn;
   }
   /**
    * Set
    */
   public void setSn(String sn) {
      this.sn = sn;
   }
   /**
    * Get
    */
   public String getBelongId() {
      return belongId;
   }
   /**
    * Set
    */
   public void setBelongId(String belongId) {
      this.belongId = belongId;
   }
   public String toString() {
      return 
          ",设备主键 =" + deviceId   +  ",公司主键 =" + deviceCompanyId +  ",设备地点 =" + deviceName +
          ",设备授权码 ="+ authorizationId;
          ", ="     + deviceId   +  ", ="     + companyId  +  ", ="     + deviceName +
          ", ="     + type       +  ", ="     + address    +  ", ="     + schoolName +
          ", ="     + brandId    +  ", ="     + ip         +  ", ="     + port       +
          ", ="     + resolutionId +  ", ="     + username   +  ", ="     + password   +
          ", ="     + protocolId +  ", ="     + sn         +  ", ="     + belongId
         ;
   }
}