LandRoadVe.java 13.8 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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
package com.sy.model;

import java.util.Date;

public class LandRoadVe {
    private String id;

    private String eportId;

    private String mainPort;

    private String coCode;

    private String veTargetNo;

    private String domesticLisenceNo;

    private String domesticLicenseColor;

    private String foreignLicense;

    private String veRegPlace;

    private String veProperty;

    private String veConveyQua;

    private String veCardNo;

    private String veOwnerName;

    private String veOwnerNo;

    private String ownerInsideAddr;

    private String ownerInsideTel;

    private String veType;

    private String brand;

    private String model;

    private String exhaustCapacity;

    private Date veFactoryDate;

    private String veMotorNo;

    private String veFrameNo;

    private String veTon;

    private String selfWt;

    private String allowTowTotalWt;

    private String containerInnerLength;

    private String containerInnerWidth;

    private String containerInnerHeight;

    private String outerLength;

    private String outerWidth;

    private String outerHeight;

    private String veBodyColor;

    private String oilBoxCapcity;

    private String allowVeIePort;

    private String apprNo;

    private Date apprPeriod;

    private String currApplyBussiness;

    private String front45cPic;

    private String back45cPic;

    private String oilBoxPic;

    private String veBottomPic;

    private String memo;

    private String proposer;

    private Date proposeTime;

    private String veClassFlag;

    private String operationType;

    private String trailerLicenseNo;

    private String trailerFrameNo;

    private String approNoPic;

    private String veFrameNoPic;

    private String motorNoPic;

    private String foreignLicensePic;

    private String nationality;

    private String returnmessage;

    private String createBy;

    private Date createDate;

    private String updateBy;

    private Date updateDate;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id == null ? null : id.trim();
    }

    public String getEportId() {
        return eportId;
    }

    public void setEportId(String eportId) {
        this.eportId = eportId == null ? null : eportId.trim();
    }

    public String getMainPort() {
        return mainPort;
    }

    public void setMainPort(String mainPort) {
        this.mainPort = mainPort == null ? null : mainPort.trim();
    }

    public String getCoCode() {
        return coCode;
    }

    public void setCoCode(String coCode) {
        this.coCode = coCode == null ? null : coCode.trim();
    }

    public String getVeTargetNo() {
        return veTargetNo;
    }

    public void setVeTargetNo(String veTargetNo) {
        this.veTargetNo = veTargetNo == null ? null : veTargetNo.trim();
    }

    public String getDomesticLisenceNo() {
        return domesticLisenceNo;
    }

    public void setDomesticLisenceNo(String domesticLisenceNo) {
        this.domesticLisenceNo = domesticLisenceNo == null ? null : domesticLisenceNo.trim();
    }

    public String getDomesticLicenseColor() {
        return domesticLicenseColor;
    }

    public void setDomesticLicenseColor(String domesticLicenseColor) {
        this.domesticLicenseColor = domesticLicenseColor == null ? null : domesticLicenseColor.trim();
    }

    public String getForeignLicense() {
        return foreignLicense;
    }

    public void setForeignLicense(String foreignLicense) {
        this.foreignLicense = foreignLicense == null ? null : foreignLicense.trim();
    }

    public String getVeRegPlace() {
        return veRegPlace;
    }

    public void setVeRegPlace(String veRegPlace) {
        this.veRegPlace = veRegPlace == null ? null : veRegPlace.trim();
    }

    public String getVeProperty() {
        return veProperty;
    }

    public void setVeProperty(String veProperty) {
        this.veProperty = veProperty == null ? null : veProperty.trim();
    }

    public String getVeConveyQua() {
        return veConveyQua;
    }

    public void setVeConveyQua(String veConveyQua) {
        this.veConveyQua = veConveyQua == null ? null : veConveyQua.trim();
    }

    public String getVeCardNo() {
        return veCardNo;
    }

    public void setVeCardNo(String veCardNo) {
        this.veCardNo = veCardNo == null ? null : veCardNo.trim();
    }

    public String getVeOwnerName() {
        return veOwnerName;
    }

    public void setVeOwnerName(String veOwnerName) {
        this.veOwnerName = veOwnerName == null ? null : veOwnerName.trim();
    }

    public String getVeOwnerNo() {
        return veOwnerNo;
    }

    public void setVeOwnerNo(String veOwnerNo) {
        this.veOwnerNo = veOwnerNo == null ? null : veOwnerNo.trim();
    }

    public String getOwnerInsideAddr() {
        return ownerInsideAddr;
    }

    public void setOwnerInsideAddr(String ownerInsideAddr) {
        this.ownerInsideAddr = ownerInsideAddr == null ? null : ownerInsideAddr.trim();
    }

    public String getOwnerInsideTel() {
        return ownerInsideTel;
    }

    public void setOwnerInsideTel(String ownerInsideTel) {
        this.ownerInsideTel = ownerInsideTel == null ? null : ownerInsideTel.trim();
    }

    public String getVeType() {
        return veType;
    }

    public void setVeType(String veType) {
        this.veType = veType == null ? null : veType.trim();
    }

    public String getBrand() {
        return brand;
    }

    public void setBrand(String brand) {
        this.brand = brand == null ? null : brand.trim();
    }

    public String getModel() {
        return model;
    }

    public void setModel(String model) {
        this.model = model == null ? null : model.trim();
    }

    public String getExhaustCapacity() {
        return exhaustCapacity;
    }

    public void setExhaustCapacity(String exhaustCapacity) {
        this.exhaustCapacity = exhaustCapacity == null ? null : exhaustCapacity.trim();
    }

    public Date getVeFactoryDate() {
        return veFactoryDate;
    }

    public void setVeFactoryDate(Date veFactoryDate) {
        this.veFactoryDate = veFactoryDate;
    }

    public String getVeMotorNo() {
        return veMotorNo;
    }

    public void setVeMotorNo(String veMotorNo) {
        this.veMotorNo = veMotorNo == null ? null : veMotorNo.trim();
    }

    public String getVeFrameNo() {
        return veFrameNo;
    }

    public void setVeFrameNo(String veFrameNo) {
        this.veFrameNo = veFrameNo == null ? null : veFrameNo.trim();
    }

    public String getVeTon() {
        return veTon;
    }

    public void setVeTon(String veTon) {
        this.veTon = veTon == null ? null : veTon.trim();
    }

    public String getSelfWt() {
        return selfWt;
    }

    public void setSelfWt(String selfWt) {
        this.selfWt = selfWt == null ? null : selfWt.trim();
    }

    public String getAllowTowTotalWt() {
        return allowTowTotalWt;
    }

    public void setAllowTowTotalWt(String allowTowTotalWt) {
        this.allowTowTotalWt = allowTowTotalWt == null ? null : allowTowTotalWt.trim();
    }

    public String getContainerInnerLength() {
        return containerInnerLength;
    }

    public void setContainerInnerLength(String containerInnerLength) {
        this.containerInnerLength = containerInnerLength == null ? null : containerInnerLength.trim();
    }

    public String getContainerInnerWidth() {
        return containerInnerWidth;
    }

    public void setContainerInnerWidth(String containerInnerWidth) {
        this.containerInnerWidth = containerInnerWidth == null ? null : containerInnerWidth.trim();
    }

    public String getContainerInnerHeight() {
        return containerInnerHeight;
    }

    public void setContainerInnerHeight(String containerInnerHeight) {
        this.containerInnerHeight = containerInnerHeight == null ? null : containerInnerHeight.trim();
    }

    public String getOuterLength() {
        return outerLength;
    }

    public void setOuterLength(String outerLength) {
        this.outerLength = outerLength == null ? null : outerLength.trim();
    }

    public String getOuterWidth() {
        return outerWidth;
    }

    public void setOuterWidth(String outerWidth) {
        this.outerWidth = outerWidth == null ? null : outerWidth.trim();
    }

    public String getOuterHeight() {
        return outerHeight;
    }

    public void setOuterHeight(String outerHeight) {
        this.outerHeight = outerHeight == null ? null : outerHeight.trim();
    }

    public String getVeBodyColor() {
        return veBodyColor;
    }

    public void setVeBodyColor(String veBodyColor) {
        this.veBodyColor = veBodyColor == null ? null : veBodyColor.trim();
    }

    public String getOilBoxCapcity() {
        return oilBoxCapcity;
    }

    public void setOilBoxCapcity(String oilBoxCapcity) {
        this.oilBoxCapcity = oilBoxCapcity == null ? null : oilBoxCapcity.trim();
    }

    public String getAllowVeIePort() {
        return allowVeIePort;
    }

    public void setAllowVeIePort(String allowVeIePort) {
        this.allowVeIePort = allowVeIePort == null ? null : allowVeIePort.trim();
    }

    public String getApprNo() {
        return apprNo;
    }

    public void setApprNo(String apprNo) {
        this.apprNo = apprNo == null ? null : apprNo.trim();
    }

    public Date getApprPeriod() {
        return apprPeriod;
    }

    public void setApprPeriod(Date apprPeriod) {
        this.apprPeriod = apprPeriod;
    }

    public String getCurrApplyBussiness() {
        return currApplyBussiness;
    }

    public void setCurrApplyBussiness(String currApplyBussiness) {
        this.currApplyBussiness = currApplyBussiness == null ? null : currApplyBussiness.trim();
    }

    public String getFront45cPic() {
        return front45cPic;
    }

    public void setFront45cPic(String front45cPic) {
        this.front45cPic = front45cPic == null ? null : front45cPic.trim();
    }

    public String getBack45cPic() {
        return back45cPic;
    }

    public void setBack45cPic(String back45cPic) {
        this.back45cPic = back45cPic == null ? null : back45cPic.trim();
    }

    public String getOilBoxPic() {
        return oilBoxPic;
    }

    public void setOilBoxPic(String oilBoxPic) {
        this.oilBoxPic = oilBoxPic == null ? null : oilBoxPic.trim();
    }

    public String getVeBottomPic() {
        return veBottomPic;
    }

    public void setVeBottomPic(String veBottomPic) {
        this.veBottomPic = veBottomPic == null ? null : veBottomPic.trim();
    }

    public String getMemo() {
        return memo;
    }

    public void setMemo(String memo) {
        this.memo = memo == null ? null : memo.trim();
    }

    public String getProposer() {
        return proposer;
    }

    public void setProposer(String proposer) {
        this.proposer = proposer == null ? null : proposer.trim();
    }

    public Date getProposeTime() {
        return proposeTime;
    }

    public void setProposeTime(Date proposeTime) {
        this.proposeTime = proposeTime;
    }

    public String getVeClassFlag() {
        return veClassFlag;
    }

    public void setVeClassFlag(String veClassFlag) {
        this.veClassFlag = veClassFlag == null ? null : veClassFlag.trim();
    }

    public String getOperationType() {
        return operationType;
    }

    public void setOperationType(String operationType) {
        this.operationType = operationType == null ? null : operationType.trim();
    }

    public String getTrailerLicenseNo() {
        return trailerLicenseNo;
    }

    public void setTrailerLicenseNo(String trailerLicenseNo) {
        this.trailerLicenseNo = trailerLicenseNo == null ? null : trailerLicenseNo.trim();
    }

    public String getTrailerFrameNo() {
        return trailerFrameNo;
    }

    public void setTrailerFrameNo(String trailerFrameNo) {
        this.trailerFrameNo = trailerFrameNo == null ? null : trailerFrameNo.trim();
    }

    public String getApproNoPic() {
        return approNoPic;
    }

    public void setApproNoPic(String approNoPic) {
        this.approNoPic = approNoPic == null ? null : approNoPic.trim();
    }

    public String getVeFrameNoPic() {
        return veFrameNoPic;
    }

    public void setVeFrameNoPic(String veFrameNoPic) {
        this.veFrameNoPic = veFrameNoPic == null ? null : veFrameNoPic.trim();
    }

    public String getMotorNoPic() {
        return motorNoPic;
    }

    public void setMotorNoPic(String motorNoPic) {
        this.motorNoPic = motorNoPic == null ? null : motorNoPic.trim();
    }

    public String getForeignLicensePic() {
        return foreignLicensePic;
    }

    public void setForeignLicensePic(String foreignLicensePic) {
        this.foreignLicensePic = foreignLicensePic == null ? null : foreignLicensePic.trim();
    }

    public String getNationality() {
        return nationality;
    }

    public void setNationality(String nationality) {
        this.nationality = nationality == null ? null : nationality.trim();
    }

    public String getReturnmessage() {
        return returnmessage;
    }

    public void setReturnmessage(String returnmessage) {
        this.returnmessage = returnmessage == null ? null : returnmessage.trim();
    }

    public String getCreateBy() {
        return createBy;
    }

    public void setCreateBy(String createBy) {
        this.createBy = createBy == null ? null : createBy.trim();
    }

    public Date getCreateDate() {
        return createDate;
    }

    public void setCreateDate(Date createDate) {
        this.createDate = createDate;
    }

    public String getUpdateBy() {
        return updateBy;
    }

    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy == null ? null : updateBy.trim();
    }

    public Date getUpdateDate() {
        return updateDate;
    }

    public void setUpdateDate(Date updateDate) {
        this.updateDate = updateDate;
    }
}