lau572
5 months ago
4 changed files with 386 additions and 3 deletions
@ -0,0 +1,86 @@ |
|||
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 RealTimeTrafficFlow extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
|
|||
/** 路段 */ |
|||
@Excel(name = "路段") |
|||
private String name; |
|||
|
|||
/** 客车 */ |
|||
@Excel(name = "客车") |
|||
private String totalPassengerFlow; |
|||
/** 货车 */ |
|||
@Excel(name = "货车") |
|||
private String typeTruckFlow; |
|||
/** 专项车 */ |
|||
@Excel(name = "专项车") |
|||
private String typeSpecialVehicleFlow; |
|||
/** 去年同期 */ |
|||
@Excel(name = "去年同期") |
|||
private String lastYearTotal; |
|||
|
|||
public String getName() { |
|||
return name; |
|||
} |
|||
|
|||
public void setName(String name) { |
|||
this.name = name; |
|||
} |
|||
|
|||
public String getTotalPassengerFlow() { |
|||
return totalPassengerFlow; |
|||
} |
|||
|
|||
public void setTotalPassengerFlow(String totalPassengerFlow) { |
|||
this.totalPassengerFlow = totalPassengerFlow; |
|||
} |
|||
|
|||
public String getTypeTruckFlow() { |
|||
return typeTruckFlow; |
|||
} |
|||
|
|||
public void setTypeTruckFlow(String typeTruckFlow) { |
|||
this.typeTruckFlow = typeTruckFlow; |
|||
} |
|||
|
|||
public String getTypeSpecialVehicleFlow() { |
|||
return typeSpecialVehicleFlow; |
|||
} |
|||
|
|||
public void setTypeSpecialVehicleFlow(String typeSpecialVehicleFlow) { |
|||
this.typeSpecialVehicleFlow = typeSpecialVehicleFlow; |
|||
} |
|||
|
|||
public String getLastYearTotal() { |
|||
return lastYearTotal; |
|||
} |
|||
|
|||
public void setLastYearTotal(String lastYearTotal) { |
|||
this.lastYearTotal = lastYearTotal; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|||
.append("name", getName()) |
|||
.append("totalPassengerFlow", getTotalPassengerFlow()) |
|||
.append("typeTruckFlow", getTypeTruckFlow()) |
|||
.append("typeSpecialVehicleFlow", getTypeSpecialVehicleFlow()) |
|||
.append("lastYearTotal", getLastYearTotal()) |
|||
.toString(); |
|||
} |
|||
} |
@ -0,0 +1,62 @@ |
|||
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 SectionTrafficRanking extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
|
|||
/** 排名 */ |
|||
@Excel(name = "排名") |
|||
private Integer rank; |
|||
|
|||
/** 路段名称 */ |
|||
@Excel(name = "路段名称") |
|||
private String facilityName; |
|||
/** 车流量 */ |
|||
@Excel(name = "车流量") |
|||
private String number; |
|||
|
|||
public Integer getRank() { |
|||
return rank; |
|||
} |
|||
|
|||
public void setRank(Integer rank) { |
|||
this.rank = rank; |
|||
} |
|||
|
|||
public String getFacilityName() { |
|||
return facilityName; |
|||
} |
|||
|
|||
public void setFacilityName(String facilityName) { |
|||
this.facilityName = facilityName; |
|||
} |
|||
|
|||
public String getNumber() { |
|||
return number; |
|||
} |
|||
|
|||
public void setNumber(String number) { |
|||
this.number = number; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|||
.append("rank", getRank()) |
|||
.append("facilityName", getFacilityName()) |
|||
.append("number", getNumber()) |
|||
.toString(); |
|||
} |
|||
} |
@ -0,0 +1,62 @@ |
|||
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 TrafficPeriodAnalysis extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
|
|||
/** 时段 */ |
|||
@Excel(name = "时段") |
|||
private String time; |
|||
|
|||
/** 本期车流量 */ |
|||
@Excel(name = "本期车流量") |
|||
private String currentData; |
|||
/** 去年同期 */ |
|||
@Excel(name = "去年同期") |
|||
private String contemporaneousData; |
|||
|
|||
public String getTime() { |
|||
return time; |
|||
} |
|||
|
|||
public void setTime(String time) { |
|||
this.time = time; |
|||
} |
|||
|
|||
public String getCurrentData() { |
|||
return currentData; |
|||
} |
|||
|
|||
public void setCurrentData(String currentData) { |
|||
this.currentData = currentData; |
|||
} |
|||
|
|||
public String getContemporaneousData() { |
|||
return contemporaneousData; |
|||
} |
|||
|
|||
public void setContemporaneousData(String contemporaneousData) { |
|||
this.contemporaneousData = contemporaneousData; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|||
.append("time", getTime()) |
|||
.append("currentData", getCurrentData()) |
|||
.append("contemporaneousData", getContemporaneousData()) |
|||
.toString(); |
|||
} |
|||
} |
Loading…
Reference in new issue