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.
24 lines
561 B
24 lines
561 B
package com.zc.business.domain;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@Data
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class TrafficFlowStatisticsMap {
|
|
private String intervalName;
|
|
private String stakeMake;
|
|
private String endMake;
|
|
private String facilityCode;
|
|
private String direction;
|
|
private String statisticalDate;
|
|
private String facilityName;
|
|
private Long trafficVolume = 0L; // 默认值;
|
|
private String periodType;
|
|
|
|
}
|
|
|