TrafficModel.java 8.6 KB
package com.viontech.vo.traffic;

import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.List;

@JsonInclude(value = JsonInclude.Include.NON_NULL)
public class TrafficModel extends TrafficBaseModel {
    private String unid;
    private String plate_color_code;
    private String plate_text;
    private String location_code;
    private String lane_code;
    private String direction_code;
    private String body_type_code;
    private String illegal_code;
    private String[] illegal_codes;
    private String illegal_state;
    private String body_color_code;
    private String body_logo_code;
    private Boolean refinedFeature_rAnnualInspection;
    private Boolean refinedFeature_rDecoration;
    private Boolean refinedFeature_rPendant;
    private Boolean refinedFeature_rSunshading;
    private String event_dt__gte;
    private String event_dt__lt;

    private List location_codes;
    private List body_type_codes;
    private List task_ids;

    // 行人事件
    private String sex;
    private String upbody_color;
    private String lobody_color;
    private List<FaceModel> faces;
    // 非机动车事件 车辆类型,motorcycle, bicycle, tricycle共三种
    private String xcycle_type;

    private List event_types;

    private List unids;

    private String event_id;
    private Integer offset;
    private Integer limit;

    private String shoot_dt;

    private String special_type;

    private String subtaskIds;

    private Object json_data;
    private String pic_name;
    private String video_name;

    private Integer with_hats;
    private String shoot_dtime;
    private Integer company;

    public Integer getCompany() {
        return company;
    }

    public TrafficModel setCompany(Integer company) {
        this.company = company;
        return this;
    }

    public String getPic_name() {
        return pic_name;
    }

    public void setPic_name(String pic_name) {
        this.pic_name = pic_name;
    }

    public String getVideo_name() {
        return video_name;
    }

    public void setVideo_name(String video_name) {
        this.video_name = video_name;
    }

    public String getUnid() {
        return unid;
    }

    public void setUnid(String unid) {
        this.unid = unid;
    }

    public String getPlate_color_code() {
        return plate_color_code;
    }

    public void setPlate_color_code(String plate_color_code) {
        this.plate_color_code = plate_color_code;
    }

    public String getPlate_text() {
        return plate_text;
    }

    public void setPlate_text(String plate_text) {
        this.plate_text = plate_text;
    }

    public String getLocation_code() {
        return location_code;
    }

    public void setLocation_code(String location_code) {
        this.location_code = location_code;
    }

    public String getLane_code() {
        return lane_code;
    }

    public void setLane_code(String lane_code) {
        this.lane_code = lane_code;
    }

    public String getDirection_code() {
        return direction_code;
    }

    public void setDirection_code(String direction_code) {
        this.direction_code = direction_code;
    }

    public String getBody_type_code() {
        return body_type_code;
    }

    public void setBody_type_code(String body_type_code) {
        this.body_type_code = body_type_code;
    }

    public String getIllegal_code() {
        return illegal_code;
    }

    public void setIllegal_code(String illegal_code) {
        this.illegal_code = illegal_code;
    }

    public String getIllegal_state() {
        return illegal_state;
    }

    public void setIllegal_state(String illegal_state) {
        this.illegal_state = illegal_state;
    }

    public String getBody_color_code() {
        return body_color_code;
    }

    public void setBody_color_code(String body_color_code) {
        this.body_color_code = body_color_code;
    }

    public String getBody_logo_code() {
        return body_logo_code;
    }

    public void setBody_logo_code(String body_logo_code) {
        this.body_logo_code = body_logo_code;
    }

    public Boolean getRefinedFeature_rAnnualInspection() {
        return refinedFeature_rAnnualInspection;
    }

    public void setRefinedFeature_rAnnualInspection(Boolean refinedFeature_rAnnualInspection) {
        this.refinedFeature_rAnnualInspection = refinedFeature_rAnnualInspection;
    }

    public Boolean getRefinedFeature_rDecoration() {
        return refinedFeature_rDecoration;
    }

    public void setRefinedFeature_rDecoration(Boolean refinedFeature_rDecoration) {
        this.refinedFeature_rDecoration = refinedFeature_rDecoration;
    }

    public Boolean getRefinedFeature_rPendant() {
        return refinedFeature_rPendant;
    }

    public void setRefinedFeature_rPendant(Boolean refinedFeature_rPendant) {
        this.refinedFeature_rPendant = refinedFeature_rPendant;
    }

    public Boolean getRefinedFeature_rSunshading() {
        return refinedFeature_rSunshading;
    }

    public void setRefinedFeature_rSunshading(Boolean refinedFeature_rSunshading) {
        this.refinedFeature_rSunshading = refinedFeature_rSunshading;
    }

    public String getEvent_dt__gte() {
        return event_dt__gte;
    }

    public void setEvent_dt__gte(String event_dt__gte) {
        this.event_dt__gte = event_dt__gte;
    }

    public String getEvent_dt__lt() {
        return event_dt__lt;
    }

    public void setEvent_dt__lt(String event_dt__lt) {
        this.event_dt__lt = event_dt__lt;
    }

    public List getLocation_codes() {
        return location_codes;
    }

    public void setLocation_codes(List location_codes) {
        this.location_codes = location_codes;
    }

    public List getBody_type_codes() {
        return body_type_codes;
    }

    public void setBody_type_codes(List body_type_codes) {
        this.body_type_codes = body_type_codes;
    }

    public List getTask_ids() {
        return task_ids;
    }

    public void setTask_ids(List task_ids) {
        this.task_ids = task_ids;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    public String getUpbody_color() {
        return upbody_color;
    }

    public void setUpbody_color(String upbody_color) {
        this.upbody_color = upbody_color;
    }

    public String getLobody_color() {
        return lobody_color;
    }

    public void setLobody_color(String lobody_color) {
        this.lobody_color = lobody_color;
    }

    public List<FaceModel> getFaces() {
        return faces;
    }

    public void setFaces(List<FaceModel> faces) {
        this.faces = faces;
    }

    public String getXcycle_type() {
        return xcycle_type;
    }

    public void setXcycle_type(String xcycle_type) {
        this.xcycle_type = xcycle_type;
    }

    public List getEvent_types() {
        return event_types;
    }

    public void setEvent_types(List event_types) {
        this.event_types = event_types;
    }

    public List getUnids() {
        return unids;
    }

    public void setUnids(List unids) {
        this.unids = unids;
    }

    public String getEvent_id() {
        return event_id;
    }

    public void setEvent_id(String event_id) {
        this.event_id = event_id;
    }

    public Integer getOffset() {
        return offset;
    }

    public void setOffset(Integer offset) {
        this.offset = offset;
    }

    public Integer getLimit() {
        return limit;
    }

    public void setLimit(Integer limit) {
        this.limit = limit;
    }

    public String getShoot_dt() {
        return shoot_dt;
    }

    public void setShoot_dt(String shoot_dt) {
        this.shoot_dt = shoot_dt;
    }

    public String[] getIllegal_codes() {
        return illegal_codes;
    }

    public void setIllegal_codes(String[] illegal_codes) {
        this.illegal_codes = illegal_codes;
    }

    public String getSpecial_type() {
        return special_type;
    }

    public void setSpecial_type(String special_type) {
        this.special_type = special_type;
    }

    public String getSubtaskIds() {
        return subtaskIds;
    }

    public void setSubtaskIds(String subtaskIds) {
        this.subtaskIds = subtaskIds;
    }

    public Object getJson_data() {
        return json_data;
    }

    public void setJson_data(Object json_data) {
        this.json_data = json_data;
    }

    public Integer getWith_hats() {
        return with_hats;
    }

    public void setWith_hats(Integer with_hats) {
        this.with_hats = with_hats;
    }

    public String getShoot_dtime() {
        return shoot_dtime;
    }

    public void setShoot_dtime(String shoot_dtime) {
        this.shoot_dtime = shoot_dtime;
    }
}