package com.jiuqi.mobile.nigo.comeclose.bean.cross; public class SelectCarDistrbutionByAreaKey { private long areaCode;// 行政区划code//需要查询的行政区划code private long bigSmallItemType;//农机大类小类品目 最后一个 private int carType;// 1:辖内车辆 2:全国车辆 3:跨区车辆 private String guid;// 查询人guid 辖内车辆使用 如果为null 或者 "" 不带此条件 如果不为空 查询需要带上添加人guid等于此guid public long getAreaCode() { return areaCode; } public void setAreaCode(long areaCode) { this.areaCode = areaCode; } public long getBigSmallItemType() { return bigSmallItemType; } public void setBigSmallItemType(long bigSmallItemType) { this.bigSmallItemType = bigSmallItemType; } public int getCarType() { return carType; } public void setCarType(int carType) { this.carType = carType; } public String getGuid() { return guid; } public void setGuid(String guid) { this.guid = guid; } }