RabbitMQVehicle.java.bak 19.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
package com.objecteye.pojo;

import org.springframework.stereotype.Component;

@Component
public class RabbitMQVehicle1 {
    private String id; //车辆id
    private int count;//在档案中的位置
    private int deviceid; //设备id
    private String equipmentName;
    private String longitude;
    private String latitude;
    private String picurl;  //图片的路径
    private int recordid;  //车辆档案id
    private Long pictime;  //抓拍时间
    private int flag;  //是否报警
    private int tag;   //是否确认
    private String personid;  //人像id
    private int[] vehicleplaterect;  //车牌位置
    private double vehicleplatedetectscore;  //车牌检测分数
    private int vehicleplatetype;  //车牌类型
    private double vehicle_plate_numScore;
    private double vehicle_color_score;
    private int vehicle_color_index;
    private double vehicle_detect_score;
    private int[] vehicle_detect_syRectParam;
    private double vehicle_win_score;
    private int[] vehicle_win_syRectParam;
    private int vehicle_special_type;
    private double vehicle_special_score;
    private double vehicle_illegal_driver_smoke_confidence;
    private int vehicle_illegal_driver_smoke_status;
    private double vehicle_illegal_driver_belt_confidence;
    private int vehicle_illegal_driver_belt_status;
    private double vehicle_illegal_driver_phone_confidence;
    private int vehicle_illegal_driver_phone_status;
    private double vehicle_illegal_driver_person_confidence;
    private int vehicle_illegal_driver_person_status;
    private double vehicle_illegal_copilot_smoke_confidence;
    private int vehicle_illegal_copilot_smoke_status;
    private double vehicle_illegal_copilot_belt_confidence;
    private int vehicle_illegal_copilot_belt_status;
    private double vehicle_illegal_copilot_phone_confidence;
    private int vehicle_illegal_copilot_phone_status;
    private double vehicle_illegal_copilot_person_confidence;
    private int vehicle_illegal_copilot_person_status;
    private String vehicle_recg_issue_year;
    private String vehicle_recg_brand;
    private String vehicle_recg_type;
    private String vehicle_recg_subbrand;
    private String vehicle_recg_freight_ton;  //吨数
    private double vehicle_recg_name_score;
    private int vehicle_pendant_count;
    private double[] vehicle_fea_feature;
    private PendantParams[] vehicle_pendant_Params;
    private PlatePlateNumParams[] vehicle_plate_plateNumParams;
    private String vehicle_plate_hphm;

    public RabbitMQVehicle1() {}

    public RabbitMQVehicle1(String id, int count, int deviceid, String equipmentName, String longitude, String latitude, String picurl, int recordid, Long pictime, int flag, int tag, String personid, int[] vehicleplaterect, double vehicleplatedetectscore, int vehicleplatetype, double vehicle_plate_numScore, double vehicle_color_score, int vehicle_color_index, double vehicle_detect_score, int[] vehicle_detect_syRectParam, double vehicle_win_score, int[] vehicle_win_syRectParam, int vehicle_special_type, double vehicle_special_score, double vehicle_illegal_driver_smoke_confidence, int vehicle_illegal_driver_smoke_status, double vehicle_illegal_driver_belt_confidence, int vehicle_illegal_driver_belt_status, double vehicle_illegal_driver_phone_confidence, int vehicle_illegal_driver_phone_status, double vehicle_illegal_driver_person_confidence, int vehicle_illegal_driver_person_status, double vehicle_illegal_copilot_smoke_confidence, int vehicle_illegal_copilot_smoke_status, double vehicle_illegal_copilot_belt_confidence, int vehicle_illegal_copilot_belt_status, double vehicle_illegal_copilot_phone_confidence, int vehicle_illegal_copilot_phone_status, double vehicle_illegal_copilot_person_confidence, int vehicle_illegal_copilot_person_status, String vehicle_recg_issue_year, String vehicle_recg_brand, String vehicle_recg_type, String vehicle_recg_subbrand, String vehicle_recg_freight_ton, double vehicle_recg_name_score, int vehicle_pendant_count, double[] vehicle_fea_feature, PendantParams[] vehicle_pendant_Params, PlatePlateNumParams[] vehicle_plate_plateNumParams, String vehicle_plate_hphm) {
        this.id = id;
        this.count = count;
        this.deviceid = deviceid;
        this.equipmentName = equipmentName;
        this.longitude = longitude;
        this.latitude = latitude;
        this.picurl = picurl;
        this.recordid = recordid;
        this.pictime = pictime;
        this.flag = flag;
        this.tag = tag;
        this.personid = personid;
        this.vehicleplaterect = vehicleplaterect;
        this.vehicleplatedetectscore = vehicleplatedetectscore;
        this.vehicleplatetype = vehicleplatetype;
        this.vehicle_plate_numScore = vehicle_plate_numScore;
        this.vehicle_color_score = vehicle_color_score;
        this.vehicle_color_index = vehicle_color_index;
        this.vehicle_detect_score = vehicle_detect_score;
        this.vehicle_detect_syRectParam = vehicle_detect_syRectParam;
        this.vehicle_win_score = vehicle_win_score;
        this.vehicle_win_syRectParam = vehicle_win_syRectParam;
        this.vehicle_special_type = vehicle_special_type;
        this.vehicle_special_score = vehicle_special_score;
        this.vehicle_illegal_driver_smoke_confidence = vehicle_illegal_driver_smoke_confidence;
        this.vehicle_illegal_driver_smoke_status = vehicle_illegal_driver_smoke_status;
        this.vehicle_illegal_driver_belt_confidence = vehicle_illegal_driver_belt_confidence;
        this.vehicle_illegal_driver_belt_status = vehicle_illegal_driver_belt_status;
        this.vehicle_illegal_driver_phone_confidence = vehicle_illegal_driver_phone_confidence;
        this.vehicle_illegal_driver_phone_status = vehicle_illegal_driver_phone_status;
        this.vehicle_illegal_driver_person_confidence = vehicle_illegal_driver_person_confidence;
        this.vehicle_illegal_driver_person_status = vehicle_illegal_driver_person_status;
        this.vehicle_illegal_copilot_smoke_confidence = vehicle_illegal_copilot_smoke_confidence;
        this.vehicle_illegal_copilot_smoke_status = vehicle_illegal_copilot_smoke_status;
        this.vehicle_illegal_copilot_belt_confidence = vehicle_illegal_copilot_belt_confidence;
        this.vehicle_illegal_copilot_belt_status = vehicle_illegal_copilot_belt_status;
        this.vehicle_illegal_copilot_phone_confidence = vehicle_illegal_copilot_phone_confidence;
        this.vehicle_illegal_copilot_phone_status = vehicle_illegal_copilot_phone_status;
        this.vehicle_illegal_copilot_person_confidence = vehicle_illegal_copilot_person_confidence;
        this.vehicle_illegal_copilot_person_status = vehicle_illegal_copilot_person_status;
        this.vehicle_recg_issue_year = vehicle_recg_issue_year;
        this.vehicle_recg_brand = vehicle_recg_brand;
        this.vehicle_recg_type = vehicle_recg_type;
        this.vehicle_recg_subbrand = vehicle_recg_subbrand;
        this.vehicle_recg_freight_ton = vehicle_recg_freight_ton;
        this.vehicle_recg_name_score = vehicle_recg_name_score;
        this.vehicle_pendant_count = vehicle_pendant_count;
        this.vehicle_fea_feature = vehicle_fea_feature;
        this.vehicle_pendant_Params = vehicle_pendant_Params;
        this.vehicle_plate_plateNumParams = vehicle_plate_plateNumParams;
        this.vehicle_plate_hphm = vehicle_plate_hphm;
    }

    public String getId() {
        return id;
    }

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

    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    public int getDeviceid() {
        return deviceid;
    }

    public void setDeviceid(int deviceid) {
        this.deviceid = deviceid;
    }

    public String getEquipmentName() {
        return equipmentName;
    }

    public void setEquipmentName(String equipmentName) {
        this.equipmentName = equipmentName;
    }

    public String getLongitude() {
        return longitude;
    }

    public void setLongitude(String longitude) {
        this.longitude = longitude;
    }

    public String getLatitude() {
        return latitude;
    }

    public void setLatitude(String latitude) {
        this.latitude = latitude;
    }

    public String getPicurl() {
        return picurl;
    }

    public void setPicurl(String picurl) {
        this.picurl = picurl;
    }

    public int getRecordid() {
        return recordid;
    }

    public void setRecordid(int recordid) {
        this.recordid = recordid;
    }

    public Long getPictime() {
        return pictime;
    }

    public void setPictime(Long pictime) {
        this.pictime = pictime;
    }

    public int getFlag() {
        return flag;
    }

    public void setFlag(int flag) {
        this.flag = flag;
    }

    public int getTag() {
        return tag;
    }

    public void setTag(int tag) {
        this.tag = tag;
    }

    public String getPersonid() {
        return personid;
    }

    public void setPersonid(String personid) {
        this.personid = personid;
    }

    public int[] getVehicleplaterect() {
        return vehicleplaterect;
    }

    public void setVehicleplaterect(int[] vehicleplaterect) {
        this.vehicleplaterect = vehicleplaterect;
    }

    public double getVehicleplatedetectscore() {
        return vehicleplatedetectscore;
    }

    public void setVehicleplatedetectscore(double vehicleplatedetectscore) {
        this.vehicleplatedetectscore = vehicleplatedetectscore;
    }

    public int getVehicleplatetype() {
        return vehicleplatetype;
    }

    public void setVehicleplatetype(int vehicleplatetype) {
        this.vehicleplatetype = vehicleplatetype;
    }

    public double getVehicle_plate_numScore() {
        return vehicle_plate_numScore;
    }

    public void setVehicle_plate_numScore(double vehicle_plate_numScore) {
        this.vehicle_plate_numScore = vehicle_plate_numScore;
    }

    public double getVehicle_color_score() {
        return vehicle_color_score;
    }

    public void setVehicle_color_score(double vehicle_color_score) {
        this.vehicle_color_score = vehicle_color_score;
    }

    public int getVehicle_color_index() {
        return vehicle_color_index;
    }

    public void setVehicle_color_index(int vehicle_color_index) {
        this.vehicle_color_index = vehicle_color_index;
    }

    public double getVehicle_detect_score() {
        return vehicle_detect_score;
    }

    public void setVehicle_detect_score(double vehicle_detect_score) {
        this.vehicle_detect_score = vehicle_detect_score;
    }

    public int[] getVehicle_detect_syRectParam() {
        return vehicle_detect_syRectParam;
    }

    public void setVehicle_detect_syRectParam(int[] vehicle_detect_syRectParam) {
        this.vehicle_detect_syRectParam = vehicle_detect_syRectParam;
    }

    public double getVehicle_win_score() {
        return vehicle_win_score;
    }

    public void setVehicle_win_score(double vehicle_win_score) {
        this.vehicle_win_score = vehicle_win_score;
    }

    public int[] getVehicle_win_syRectParam() {
        return vehicle_win_syRectParam;
    }

    public void setVehicle_win_syRectParam(int[] vehicle_win_syRectParam) {
        this.vehicle_win_syRectParam = vehicle_win_syRectParam;
    }

    public int getVehicle_special_type() {
        return vehicle_special_type;
    }

    public void setVehicle_special_type(int vehicle_special_type) {
        this.vehicle_special_type = vehicle_special_type;
    }

    public double getVehicle_special_score() {
        return vehicle_special_score;
    }

    public void setVehicle_special_score(double vehicle_special_score) {
        this.vehicle_special_score = vehicle_special_score;
    }

    public double getVehicle_illegal_driver_smoke_confidence() {
        return vehicle_illegal_driver_smoke_confidence;
    }

    public void setVehicle_illegal_driver_smoke_confidence(double vehicle_illegal_driver_smoke_confidence) {
        this.vehicle_illegal_driver_smoke_confidence = vehicle_illegal_driver_smoke_confidence;
    }

    public int getVehicle_illegal_driver_smoke_status() {
        return vehicle_illegal_driver_smoke_status;
    }

    public void setVehicle_illegal_driver_smoke_status(int vehicle_illegal_driver_smoke_status) {
        this.vehicle_illegal_driver_smoke_status = vehicle_illegal_driver_smoke_status;
    }

    public double getVehicle_illegal_driver_belt_confidence() {
        return vehicle_illegal_driver_belt_confidence;
    }

    public void setVehicle_illegal_driver_belt_confidence(double vehicle_illegal_driver_belt_confidence) {
        this.vehicle_illegal_driver_belt_confidence = vehicle_illegal_driver_belt_confidence;
    }

    public int getVehicle_illegal_driver_belt_status() {
        return vehicle_illegal_driver_belt_status;
    }

    public void setVehicle_illegal_driver_belt_status(int vehicle_illegal_driver_belt_status) {
        this.vehicle_illegal_driver_belt_status = vehicle_illegal_driver_belt_status;
    }

    public double getVehicle_illegal_driver_phone_confidence() {
        return vehicle_illegal_driver_phone_confidence;
    }

    public void setVehicle_illegal_driver_phone_confidence(double vehicle_illegal_driver_phone_confidence) {
        this.vehicle_illegal_driver_phone_confidence = vehicle_illegal_driver_phone_confidence;
    }

    public int getVehicle_illegal_driver_phone_status() {
        return vehicle_illegal_driver_phone_status;
    }

    public void setVehicle_illegal_driver_phone_status(int vehicle_illegal_driver_phone_status) {
        this.vehicle_illegal_driver_phone_status = vehicle_illegal_driver_phone_status;
    }

    public double getVehicle_illegal_driver_person_confidence() {
        return vehicle_illegal_driver_person_confidence;
    }

    public void setVehicle_illegal_driver_person_confidence(double vehicle_illegal_driver_person_confidence) {
        this.vehicle_illegal_driver_person_confidence = vehicle_illegal_driver_person_confidence;
    }

    public int getVehicle_illegal_driver_person_status() {
        return vehicle_illegal_driver_person_status;
    }

    public void setVehicle_illegal_driver_person_status(int vehicle_illegal_driver_person_status) {
        this.vehicle_illegal_driver_person_status = vehicle_illegal_driver_person_status;
    }

    public double getVehicle_illegal_copilot_smoke_confidence() {
        return vehicle_illegal_copilot_smoke_confidence;
    }

    public void setVehicle_illegal_copilot_smoke_confidence(double vehicle_illegal_copilot_smoke_confidence) {
        this.vehicle_illegal_copilot_smoke_confidence = vehicle_illegal_copilot_smoke_confidence;
    }

    public int getVehicle_illegal_copilot_smoke_status() {
        return vehicle_illegal_copilot_smoke_status;
    }

    public void setVehicle_illegal_copilot_smoke_status(int vehicle_illegal_copilot_smoke_status) {
        this.vehicle_illegal_copilot_smoke_status = vehicle_illegal_copilot_smoke_status;
    }

    public double getVehicle_illegal_copilot_belt_confidence() {
        return vehicle_illegal_copilot_belt_confidence;
    }

    public void setVehicle_illegal_copilot_belt_confidence(double vehicle_illegal_copilot_belt_confidence) {
        this.vehicle_illegal_copilot_belt_confidence = vehicle_illegal_copilot_belt_confidence;
    }

    public int getVehicle_illegal_copilot_belt_status() {
        return vehicle_illegal_copilot_belt_status;
    }

    public void setVehicle_illegal_copilot_belt_status(int vehicle_illegal_copilot_belt_status) {
        this.vehicle_illegal_copilot_belt_status = vehicle_illegal_copilot_belt_status;
    }

    public double getVehicle_illegal_copilot_phone_confidence() {
        return vehicle_illegal_copilot_phone_confidence;
    }

    public void setVehicle_illegal_copilot_phone_confidence(double vehicle_illegal_copilot_phone_confidence) {
        this.vehicle_illegal_copilot_phone_confidence = vehicle_illegal_copilot_phone_confidence;
    }

    public int getVehicle_illegal_copilot_phone_status() {
        return vehicle_illegal_copilot_phone_status;
    }

    public void setVehicle_illegal_copilot_phone_status(int vehicle_illegal_copilot_phone_status) {
        this.vehicle_illegal_copilot_phone_status = vehicle_illegal_copilot_phone_status;
    }

    public double getVehicle_illegal_copilot_person_confidence() {
        return vehicle_illegal_copilot_person_confidence;
    }

    public void setVehicle_illegal_copilot_person_confidence(double vehicle_illegal_copilot_person_confidence) {
        this.vehicle_illegal_copilot_person_confidence = vehicle_illegal_copilot_person_confidence;
    }

    public int getVehicle_illegal_copilot_person_status() {
        return vehicle_illegal_copilot_person_status;
    }

    public void setVehicle_illegal_copilot_person_status(int vehicle_illegal_copilot_person_status) {
        this.vehicle_illegal_copilot_person_status = vehicle_illegal_copilot_person_status;
    }

    public String getVehicle_recg_issue_year() {
        return vehicle_recg_issue_year;
    }

    public void setVehicle_recg_issue_year(String vehicle_recg_issue_year) {
        this.vehicle_recg_issue_year = vehicle_recg_issue_year;
    }

    public String getVehicle_recg_brand() {
        return vehicle_recg_brand;
    }

    public void setVehicle_recg_brand(String vehicle_recg_brand) {
        this.vehicle_recg_brand = vehicle_recg_brand;
    }

    public String getVehicle_recg_type() {
        return vehicle_recg_type;
    }

    public void setVehicle_recg_type(String vehicle_recg_type) {
        this.vehicle_recg_type = vehicle_recg_type;
    }

    public String getVehicle_recg_subbrand() {
        return vehicle_recg_subbrand;
    }

    public void setVehicle_recg_subbrand(String vehicle_recg_subbrand) {
        this.vehicle_recg_subbrand = vehicle_recg_subbrand;
    }

    public String getVehicle_recg_freight_ton() {
        return vehicle_recg_freight_ton;
    }

    public void setVehicle_recg_freight_ton(String vehicle_recg_freight_ton) {
        this.vehicle_recg_freight_ton = vehicle_recg_freight_ton;
    }

    public double getVehicle_recg_name_score() {
        return vehicle_recg_name_score;
    }

    public void setVehicle_recg_name_score(double vehicle_recg_name_score) {
        this.vehicle_recg_name_score = vehicle_recg_name_score;
    }

    public int getVehicle_pendant_count() {
        return vehicle_pendant_count;
    }

    public void setVehicle_pendant_count(int vehicle_pendant_count) {
        this.vehicle_pendant_count = vehicle_pendant_count;
    }

    public double[] getVehicle_fea_feature() {
        return vehicle_fea_feature;
    }

    public void setVehicle_fea_feature(double[] vehicle_fea_feature) {
        this.vehicle_fea_feature = vehicle_fea_feature;
    }

    public PendantParams[] getVehicle_pendant_Params() {
        return vehicle_pendant_Params;
    }

    public void setVehicle_pendant_Params(PendantParams[] vehicle_pendant_Params) {
        this.vehicle_pendant_Params = vehicle_pendant_Params;
    }

    public PlatePlateNumParams[] getVehicle_plate_plateNumParams() {
        return vehicle_plate_plateNumParams;
    }

    public void setVehicle_plate_plateNumParams(PlatePlateNumParams[] vehicle_plate_plateNumParams) {
        this.vehicle_plate_plateNumParams = vehicle_plate_plateNumParams;
    }

    public String getVehicle_plate_hphm() {
        return vehicle_plate_hphm;
    }

    public void setVehicle_plate_hphm(String vehicle_plate_hphm) {
        this.vehicle_plate_hphm = vehicle_plate_hphm;
    }
}