TrafficStatisticsVo.java
672 Bytes
package com.viontech.vo;
/**
* @program: event_data_handle
* @description: 交通统计vo类
* @author: authorName
* @create: 2019-12-26 14:40
**/
public class TrafficStatisticsVo extends BaseStatisticsVo {
private String illegalType;
private String keyVehicleType;
public String getIllegalType() {
return illegalType;
}
public void setIllegalType(String illegalType) {
this.illegalType = illegalType;
}
public String getKeyVehicleType() {
return keyVehicleType;
}
public void setKeyVehicleType(String keyVehicleType) {
this.keyVehicleType = keyVehicleType;
}
}