package com.jiuqi.mobile.nigo.comeclose.bean.cross; /** * 车辆分布bean * @author lizh * */ public class CarDistributionBaseBean { private String name;//关键字 role<=3 为省市县名称 role>为具体司机姓名 private double lon;//经度 private double lat;//纬度 private int isArea;//是否为区域 省市县 为0 具体司机 为1(CarDistributionKey 的areaBeans 为空 则为1 否则为0) private CarDistributionKey key;//回调查询条件key 直接将manager给 CarDistributionKey 参数赋值即可 private int thisCount;//当前总数 private int totalCount;//总数 public String getName() { return name; } public void setName(String name) { this.name = name; } 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 int getIsArea() { return isArea; } public void setIsArea(int isArea) { this.isArea = isArea; } public CarDistributionKey getKey() { return key; } public void setKey(CarDistributionKey key) { this.key = key; } public int getThisCount() { return thisCount; } public void setThisCount(int thisCount) { this.thisCount = thisCount; } public int getTotalCount() { return totalCount; } public void setTotalCount(int totalCount) { this.totalCount = totalCount; } }