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.
25 lines
542 B
25 lines
542 B
8 months ago
|
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;
|
||
|
private String periodType;
|
||
|
|
||
|
}
|