All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ibole.infrastructure.common.dto.MiniDeviceInfoTo Maven / Gradle / Ivy

The newest version!
package com.github.ibole.infrastructure.common.dto;

/**
 * Created by bwang on 2016/9/4.
 */
public class MiniDeviceInfoTo implements TransferObject {
    /**
   * 
   */
  private static final long serialVersionUID = 1L;
    //手机型号
    private String model;
    //OS版本信息
    private String osVersion;
    //当前包的版本号
    private String versionCode;
    //本机串号imei
    private String imei;
    //IP
    private String ipAddress;

    public String getModel() {
        return model;
    }

    public void setModel(String model) {
        this.model = model;
    }

    public String getOsVersion() {
        return osVersion;
    }

    public void setOsVersion(String osVersion) {
        this.osVersion = osVersion;
    }

    public String getVersionCode() {
        return versionCode;
    }

    public void setVersionCode(String versionCode) {
        this.versionCode = versionCode;
    }

    public String getImei() {
        return imei == null? "" : imei;
    }

    public void setImei(String imei) {
        this.imei = imei;
    }

    /**
     * @return the ipAddress
     */
    public String getIpAddress() {
      return ipAddress;
    }

    /**
     * @param ipAddress the ipAddress to set
     */
    public void setIpAddress(String ipAddress) {
      this.ipAddress = ipAddress;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy