wangsixiang
5 months ago
9 changed files with 181 additions and 9 deletions
@ -0,0 +1,36 @@ |
|||
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; |
|||
|
|||
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; |
|||
} |
Loading…
Reference in new issue