You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
package com.zc.business.domain;
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class ComprehensiveIndexQuery {
|
|
@Excel(name = "路段名称")
|
|
private String intervalName;
|
|
private String stakeMake;
|
|
private String endMake;
|
|
private String facilityCode;
|
|
private String facilityName;
|
|
|
|
@Excel(name = "方向", readConverterExp = "1=菏泽方向,3=济南方向")
|
|
private String direction;
|
|
@Excel(name = "饱和度")
|
|
private Float saturationRate;
|
|
@Excel(name = "交通组成特征指数(大车占比", readConverterExp = "1=低,2=中,3=高")
|
|
|
|
private Integer trafficCompositionRate;
|
|
@Excel(name = "统计时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
private Date statisticalDate;
|
|
@Excel(name = "拥堵度", readConverterExp = "1=畅通,2=基本畅通,3=轻度拥堵 ,4=中度拥堵,5=重度拥堵")
|
|
private Integer crowdingRate;
|
|
private Integer periodType;
|
|
private String startDate;
|
|
private String endDate;
|
|
|
|
}
|
|
|