| | |
| | | private String townName; |
| | | |
| | | /** |
| | | * 里程数,公里 |
| | | */ |
| | | private Float kilometres; |
| | | |
| | | /** |
| | | * 走航围绕主要区域 |
| | | */ |
| | | private String region; |
| | | |
| | | /** |
| | | * 走航围绕中心区域半径,公里 |
| | | */ |
| | | private Float radius; |
| | | |
| | | /** |
| | | * 空气质量等级 |
| | | */ |
| | | @Column(name = "pollution_degree") |
| | | private String pollutionDegree; |
| | | |
| | | /** |
| | | * 空气质量等级指数AQI |
| | | */ |
| | | private Integer aqi; |
| | | |
| | | /** |
| | | * 首要污染因子 |
| | | */ |
| | | @Column(name = "main_factor") |
| | | private String mainFactor; |
| | | |
| | | /** |
| | | * @return mission_code |
| | | */ |
| | | public String getMissionCode() { |
| | |
| | | public void setTownName(String townName) { |
| | | this.townName = townName == null ? null : townName.trim(); |
| | | } |
| | | |
| | | /** |
| | | * 获取里程数,公里 |
| | | * |
| | | * @return kilometres - 里程数,公里 |
| | | */ |
| | | public Float getKilometres() { |
| | | return kilometres; |
| | | } |
| | | |
| | | /** |
| | | * 设置里程数,公里 |
| | | * |
| | | * @param kilometres 里程数,公里 |
| | | */ |
| | | public void setKilometres(Float kilometres) { |
| | | this.kilometres = kilometres; |
| | | } |
| | | |
| | | /** |
| | | * 获取走航围绕主要区域 |
| | | * |
| | | * @return region - 走航围绕主要区域 |
| | | */ |
| | | public String getRegion() { |
| | | return region; |
| | | } |
| | | |
| | | /** |
| | | * 设置走航围绕主要区域 |
| | | * |
| | | * @param region 走航围绕主要区域 |
| | | */ |
| | | public void setRegion(String region) { |
| | | this.region = region == null ? null : region.trim(); |
| | | } |
| | | |
| | | /** |
| | | * 获取走航围绕中心区域半径,公里 |
| | | * |
| | | * @return radius - 走航围绕中心区域半径,公里 |
| | | */ |
| | | public Float getRadius() { |
| | | return radius; |
| | | } |
| | | |
| | | /** |
| | | * 设置走航围绕中心区域半径,公里 |
| | | * |
| | | * @param radius 走航围绕中心区域半径,公里 |
| | | */ |
| | | public void setRadius(Float radius) { |
| | | this.radius = radius; |
| | | } |
| | | |
| | | /** |
| | | * 获取空气质量等级 |
| | | * |
| | | * @return pollution_degree - 空气质量等级 |
| | | */ |
| | | public String getPollutionDegree() { |
| | | return pollutionDegree; |
| | | } |
| | | |
| | | /** |
| | | * 设置空气质量等级 |
| | | * |
| | | * @param pollutionDegree 空气质量等级 |
| | | */ |
| | | public void setPollutionDegree(String pollutionDegree) { |
| | | this.pollutionDegree = pollutionDegree == null ? null : pollutionDegree.trim(); |
| | | } |
| | | |
| | | /** |
| | | * 获取空气质量等级指数AQI |
| | | * |
| | | * @return aqi - 空气质量等级指数AQI |
| | | */ |
| | | public Integer getAqi() { |
| | | return aqi; |
| | | } |
| | | |
| | | /** |
| | | * 设置空气质量等级指数AQI |
| | | * |
| | | * @param aqi 空气质量等级指数AQI |
| | | */ |
| | | public void setAqi(Integer aqi) { |
| | | this.aqi = aqi; |
| | | } |
| | | |
| | | /** |
| | | * 获取首要污染因子 |
| | | * |
| | | * @return main_factor - 首要污染因子 |
| | | */ |
| | | public String getMainFactor() { |
| | | return mainFactor; |
| | | } |
| | | |
| | | /** |
| | | * 设置首要污染因子 |
| | | * |
| | | * @param mainFactor 首要污染因子 |
| | | */ |
| | | public void setMainFactor(String mainFactor) { |
| | | this.mainFactor = mainFactor == null ? null : mainFactor.trim(); |
| | | } |
| | | } |