lau572
5 months ago
2 changed files with 183 additions and 4 deletions
@ -0,0 +1,111 @@ |
|||||
|
package com.zc.business.domain.export; |
||||
|
|
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import com.ruoyi.common.core.domain.BaseEntity; |
||||
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
||||
|
import org.apache.commons.lang3.builder.ToStringStyle; |
||||
|
|
||||
|
/** |
||||
|
* 导出路段交通指标分析对象 |
||||
|
* |
||||
|
* @author ruoyi |
||||
|
* @date 2024-01-13 |
||||
|
*/ |
||||
|
public class SectionTrafficIndexAnalysis extends BaseEntity |
||||
|
{ |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** 路段 */ |
||||
|
@Excel(name = "路段") |
||||
|
private String name; |
||||
|
|
||||
|
/** 饱和度 */ |
||||
|
@Excel(name = "饱和度") |
||||
|
private String saturationRate; |
||||
|
/** 拥挤度 */ |
||||
|
@Excel(name = "拥挤度") |
||||
|
private String crowdingRate; |
||||
|
/** 交通组成特征指数 */ |
||||
|
@Excel(name = "交通组成特征指数") |
||||
|
private String trafficCompositionRate; |
||||
|
|
||||
|
/** 饱和度去年同期 */ |
||||
|
@Excel(name = "饱和度去年同期") |
||||
|
private String saturationRateLastYear; |
||||
|
/** 拥挤度去年同期 */ |
||||
|
@Excel(name = "拥挤度去年同期") |
||||
|
private String crowdingRateLastYear; |
||||
|
/** 交通组成特征指数去年同期 */ |
||||
|
@Excel(name = "交通组成特征指数去年同期") |
||||
|
private String trafficCompositionRateLastYear; |
||||
|
|
||||
|
public String getName() { |
||||
|
return name; |
||||
|
} |
||||
|
|
||||
|
public void setName(String name) { |
||||
|
this.name = name; |
||||
|
} |
||||
|
|
||||
|
public String getSaturationRate() { |
||||
|
return saturationRate; |
||||
|
} |
||||
|
|
||||
|
public void setSaturationRate(String saturationRate) { |
||||
|
this.saturationRate = saturationRate; |
||||
|
} |
||||
|
|
||||
|
public String getCrowdingRate() { |
||||
|
return crowdingRate; |
||||
|
} |
||||
|
|
||||
|
public void setCrowdingRate(String crowdingRate) { |
||||
|
this.crowdingRate = crowdingRate; |
||||
|
} |
||||
|
|
||||
|
public String getTrafficCompositionRate() { |
||||
|
return trafficCompositionRate; |
||||
|
} |
||||
|
|
||||
|
public void setTrafficCompositionRate(String trafficCompositionRate) { |
||||
|
this.trafficCompositionRate = trafficCompositionRate; |
||||
|
} |
||||
|
|
||||
|
public String getSaturationRateLastYear() { |
||||
|
return saturationRateLastYear; |
||||
|
} |
||||
|
|
||||
|
public void setSaturationRateLastYear(String saturationRateLastYear) { |
||||
|
this.saturationRateLastYear = saturationRateLastYear; |
||||
|
} |
||||
|
|
||||
|
public String getCrowdingRateLastYear() { |
||||
|
return crowdingRateLastYear; |
||||
|
} |
||||
|
|
||||
|
public void setCrowdingRateLastYear(String crowdingRateLastYear) { |
||||
|
this.crowdingRateLastYear = crowdingRateLastYear; |
||||
|
} |
||||
|
|
||||
|
public String getTrafficCompositionRateLastYear() { |
||||
|
return trafficCompositionRateLastYear; |
||||
|
} |
||||
|
|
||||
|
public void setTrafficCompositionRateLastYear(String trafficCompositionRateLastYear) { |
||||
|
this.trafficCompositionRateLastYear = trafficCompositionRateLastYear; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
||||
|
.append("name", getName()) |
||||
|
.append("saturationRate", getSaturationRate()) |
||||
|
.append("crowdingRate", getCrowdingRate()) |
||||
|
.append("trafficCompositionRate", getTrafficCompositionRate()) |
||||
|
.append("saturationRateLastYear", getSaturationRateLastYear()) |
||||
|
.append("crowdingRateLastYear", getCrowdingRateLastYear()) |
||||
|
.append("trafficCompositionRateLastYear", getTrafficCompositionRateLastYear()) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue