Traffic.java 6.9 KB
package com.viontech.fanxing.commons.model;

import com.viontech.fanxing.commons.base.BaseModel;
import java.util.Date;

public class Traffic extends BaseModel {
    private Long id;

    private Date eventTime;

    private String unid;

    private Long taskId;

    private String eventCate;

    private String eventType;

    private String channelUnid;

    private String plateColor;

    private String plateNumber;

    private String locationCode;

    private String locationName;

    private String laneCode;

    private String directionCode;

    private String vehicleType;

    private String vehicleColor;

    private String vehicleLogo;

    private String illegalCode;

    private Integer illegalState;

    private Short featureAnnualInspectionMark;

    private Short featurePendant;

    private Short featureDecoration;

    private Short featureSunShield;

    private String xcycleType;

    private String eventId;

    private String specialType;

    private Integer withHelmet;

    private String pics;

    private String videoName;

    private Integer status;

    private String company;

    private String jsonData;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Date getEventTime() {
        return eventTime;
    }

    public void setEventTime(Date eventTime) {
        this.eventTime = eventTime;
    }

    public String getUnid() {
        return unid;
    }

    public void setUnid(String unid) {
        this.unid = unid == null ? null : unid.trim();
    }

    public Long getTaskId() {
        return taskId;
    }

    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }

    public String getEventCate() {
        return eventCate;
    }

    public void setEventCate(String eventCate) {
        this.eventCate = eventCate == null ? null : eventCate.trim();
    }

    public String getEventType() {
        return eventType;
    }

    public void setEventType(String eventType) {
        this.eventType = eventType == null ? null : eventType.trim();
    }

    public String getChannelUnid() {
        return channelUnid;
    }

    public void setChannelUnid(String channelUnid) {
        this.channelUnid = channelUnid == null ? null : channelUnid.trim();
    }

    public String getPlateColor() {
        return plateColor;
    }

    public void setPlateColor(String plateColor) {
        this.plateColor = plateColor == null ? null : plateColor.trim();
    }

    public String getPlateNumber() {
        return plateNumber;
    }

    public void setPlateNumber(String plateNumber) {
        this.plateNumber = plateNumber == null ? null : plateNumber.trim();
    }

    public String getLocationCode() {
        return locationCode;
    }

    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode == null ? null : locationCode.trim();
    }

    public String getLocationName() {
        return locationName;
    }

    public void setLocationName(String locationName) {
        this.locationName = locationName == null ? null : locationName.trim();
    }

    public String getLaneCode() {
        return laneCode;
    }

    public void setLaneCode(String laneCode) {
        this.laneCode = laneCode == null ? null : laneCode.trim();
    }

    public String getDirectionCode() {
        return directionCode;
    }

    public void setDirectionCode(String directionCode) {
        this.directionCode = directionCode == null ? null : directionCode.trim();
    }

    public String getVehicleType() {
        return vehicleType;
    }

    public void setVehicleType(String vehicleType) {
        this.vehicleType = vehicleType == null ? null : vehicleType.trim();
    }

    public String getVehicleColor() {
        return vehicleColor;
    }

    public void setVehicleColor(String vehicleColor) {
        this.vehicleColor = vehicleColor == null ? null : vehicleColor.trim();
    }

    public String getVehicleLogo() {
        return vehicleLogo;
    }

    public void setVehicleLogo(String vehicleLogo) {
        this.vehicleLogo = vehicleLogo == null ? null : vehicleLogo.trim();
    }

    public String getIllegalCode() {
        return illegalCode;
    }

    public void setIllegalCode(String illegalCode) {
        this.illegalCode = illegalCode == null ? null : illegalCode.trim();
    }

    public Integer getIllegalState() {
        return illegalState;
    }

    public void setIllegalState(Integer illegalState) {
        this.illegalState = illegalState;
    }

    public Short getFeatureAnnualInspectionMark() {
        return featureAnnualInspectionMark;
    }

    public void setFeatureAnnualInspectionMark(Short featureAnnualInspectionMark) {
        this.featureAnnualInspectionMark = featureAnnualInspectionMark;
    }

    public Short getFeaturePendant() {
        return featurePendant;
    }

    public void setFeaturePendant(Short featurePendant) {
        this.featurePendant = featurePendant;
    }

    public Short getFeatureDecoration() {
        return featureDecoration;
    }

    public void setFeatureDecoration(Short featureDecoration) {
        this.featureDecoration = featureDecoration;
    }

    public Short getFeatureSunShield() {
        return featureSunShield;
    }

    public void setFeatureSunShield(Short featureSunShield) {
        this.featureSunShield = featureSunShield;
    }

    public String getXcycleType() {
        return xcycleType;
    }

    public void setXcycleType(String xcycleType) {
        this.xcycleType = xcycleType == null ? null : xcycleType.trim();
    }

    public String getEventId() {
        return eventId;
    }

    public void setEventId(String eventId) {
        this.eventId = eventId == null ? null : eventId.trim();
    }

    public String getSpecialType() {
        return specialType;
    }

    public void setSpecialType(String specialType) {
        this.specialType = specialType == null ? null : specialType.trim();
    }

    public Integer getWithHelmet() {
        return withHelmet;
    }

    public void setWithHelmet(Integer withHelmet) {
        this.withHelmet = withHelmet;
    }

    public String getPics() {
        return pics;
    }

    public void setPics(String pics) {
        this.pics = pics == null ? null : pics.trim();
    }

    public String getVideoName() {
        return videoName;
    }

    public void setVideoName(String videoName) {
        this.videoName = videoName == null ? null : videoName.trim();
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public String getCompany() {
        return company;
    }

    public void setCompany(String company) {
        this.company = company == null ? null : company.trim();
    }

    public String getJsonData() {
        return jsonData;
    }

    public void setJsonData(String jsonData) {
        this.jsonData = jsonData == null ? null : jsonData.trim();
    }
}