Traffic.java 6.62 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 String unid;

    private Long taskId;

    private String eventCate;

    private String eventType;

    private Date eventTime;

    private String channelUnid;

    private String plateColor;

    private String plateNumber;

    private String locationCode;

    private String laneCode;

    private String directionCode;

    private String vehicleType;

    private String illegalCode;

    private Integer illegalState;

    private String vehicleColor;

    private String vehicleLogo;

    private String annualInspectionMark;

    private String pendant;

    private String decoration;

    private String sunShield;

    private String xcycleType;

    private String eventId;

    private Date shootTime;

    private String specialType;

    private Integer withHelmet;

    private String picName;

    private String videoName;

    private Integer status;

    private String jsonData;

    public Long getId() {
        return id;
    }

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

    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 Date getEventTime() {
        return eventTime;
    }

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

    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 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 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 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 getAnnualInspectionMark() {
        return annualInspectionMark;
    }

    public void setAnnualInspectionMark(String annualInspectionMark) {
        this.annualInspectionMark = annualInspectionMark == null ? null : annualInspectionMark.trim();
    }

    public String getPendant() {
        return pendant;
    }

    public void setPendant(String pendant) {
        this.pendant = pendant == null ? null : pendant.trim();
    }

    public String getDecoration() {
        return decoration;
    }

    public void setDecoration(String decoration) {
        this.decoration = decoration == null ? null : decoration.trim();
    }

    public String getSunShield() {
        return sunShield;
    }

    public void setSunShield(String sunShield) {
        this.sunShield = sunShield == null ? null : sunShield.trim();
    }

    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 Date getShootTime() {
        return shootTime;
    }

    public void setShootTime(Date shootTime) {
        this.shootTime = shootTime;
    }

    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 getPicName() {
        return picName;
    }

    public void setPicName(String picName) {
        this.picName = picName == null ? null : picName.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 getJsonData() {
        return jsonData;
    }

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