package com.jqyd.android.module.lbs.bean; import android.net.NetworkInfo; public class LocationInfo{ private String recid; private int resultCode;//定位结果(参考当前定位中心通过运营商返回结果代码) private int longitudeType;//0--东经,1--西经 private double lon;// 经度 private int latitudeType;//0--南纬,1--北纬 private double lat;//纬度 private double altitude;//高度 private String province;//省 private String city;//市 private String country;//县 private String content;//文字描述 private int success;//1-成功 // private int dwModule;//定位模式(百度- 3), ("gps", 1) private long time;//时间 private float radius;//半径 private int errorcode;//百度错误码 private int posour;//定义位置来源:位置信息是从哪里获取的。(百度- 3), ("gps", 1) private int gpsStatus;//gps状态,0--关闭,1--开启 private int wlanStatus;//WLAN状态0--关闭,1--开启 private int mobileNetworkStatus;//手机移动网络状态,0--开启1--关闭 private String netAPN;//access point names;接入点名字 private String netType;//手机网络不可用,移动联通wap10.0.0.172,电信wap10.0.0.200,其他net(电信,移动,联通,wifi等net网络) private String netStatusMemo;//网络状态备注 private NetworkInfo networkInfo;//网络状态文字详情 private GeocodeInfo gisInfo;//位置详情文字详情 public String getRecid() { return recid; } public void setRecid(String recid) { this.recid = recid; } public int getResultCode() { return resultCode; } public void setResultCode(int resultCode) { this.resultCode = resultCode; } public int getLongitudeType() { return longitudeType; } public void setLongitudeType(int longitudeType) { this.longitudeType = longitudeType; } public int getLatitudeType() { return latitudeType; } public void setLatitudeType(int latitudeType) { this.latitudeType = latitudeType; } public double getAltitude() { return altitude; } public void setAltitude(double altitude) { this.altitude = altitude; } public int getPosour() { return posour; } public void setPosour(int posour) { this.posour = posour; } public int getGpsStatus() { return gpsStatus; } public void setGpsStatus(int gpsStatus) { this.gpsStatus = gpsStatus; } public int getWlanStatus() { return wlanStatus; } public void setWlanStatus(int wlanStatus) { this.wlanStatus = wlanStatus; } public int getMobileNetworkStatus() { return mobileNetworkStatus; } public void setMobileNetworkStatus(int mobileNetworkStatus) { this.mobileNetworkStatus = mobileNetworkStatus; } public String getNetAPN() { return netAPN; } public void setNetAPN(String netAPN) { this.netAPN = netAPN; } public String getNetType() { return netType; } public void setNetType(String netType) { this.netType = netType; } public String getNetStatusMemo() { return netStatusMemo; } public void setNetStatusMemo(String netStatusMemo) { this.netStatusMemo = netStatusMemo; } public NetworkInfo getNetworkInfo() { return networkInfo; } public void setNetworkInfo(NetworkInfo networkInfo) { this.networkInfo = networkInfo; } public GeocodeInfo getGisInfo() { return gisInfo; } public void setGisInfo(GeocodeInfo gisInfo) { this.gisInfo = gisInfo; } public int getErrorcode() { return errorcode; } public void setErrorcode(int errorcode) { this.errorcode = errorcode; } public long getTime() { return time; } public void setTime(long time) { this.time = time; } public float getRadius() { return radius; } public void setRadius(float radius) { this.radius = radius; } public double getLon() { return lon; } public void setLon(double lon) { this.lon = lon; } public double getLat() { return lat; } public void setLat(double lat) { this.lat = lat; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public int getSuccess() { return success; } public void setSuccess(int success) { this.success = success; } // public int getDwModule() { // return dwModule; // } // // public void setDwModule(int dwModule) { // this.dwModule = dwModule; // } }