PREPARESECONDARY.java 17.5 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 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
package com.tianbo.analysis.model;

import java.math.BigDecimal;
import java.util.Date;

public class PREPARESECONDARY {
    private String id;

    private String waybillnomaster;

    private String waybillnosecondary;

    private String totalweight;

    private String totalpiece;

    private String preparepiece;

    private String prepareweight;

    private String productname;

    private Date stowagedate;

    private Date createdate;

    private Short preparemasterid;

    private String autoid;

    private Date modifyDate;

    private BigDecimal modifier;

    private BigDecimal isDelete;

    private BigDecimal creator;

    private Date createDate;

    private String flightno;

    private Date flightdate;

    private String originatingstation;

    private String destinationstation;

    private String agentcompanycode;

    private String status;

    private String carrier;

    private String customsstatus;

    private String paymode;

    private String specialgoodscode;

    private String customscode;

    private String agentman;

    private String agentcompany;

    private String receiptinformation;

    private String unnumber;

    private String category;

    private String shCompany;

    private String shAddress;

    private String shZipcode;

    private String shCity;

    private String shDeltaname;

    private String shCountry;

    private String shTelephone;

    private String shFax;

    private String shName;

    private String coCompany;

    private String coAddress;

    private String coZipcode;

    private String coCity;

    private String coDeltaname;

    private String coCountry;

    private String coTelephone;

    private String coFax;

    private String coName;

    private String reachStation;

    private String carrier1;

    private String reachStation1;

    private String carrier2;

    private String reachStation2;

    private String nameOfgoods;

    private String deliveryStation;

    private String shProvincecode;

    private String shProvincename;

    private String deNumber;

    private String deWeight;

    private String deChweight;

    private String deSize;

    private String deVolume;

    private String deType;

    private String deTrstation;

    private String dePacking;

    private String deRemarks;

    private Short deIds;

    private String responseCode;

    private String responseText;

    private Short saveTime;

    private Short userId;

    private String shpaeo;

    private String cneaeo;

    private String shpcusid;

    private String cnecusid;

    private String unlodingcode;

    public String getId() {
        return id;
    }

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

    public String getWaybillnomaster() {
        return waybillnomaster;
    }

    public void setWaybillnomaster(String waybillnomaster) {
        this.waybillnomaster = waybillnomaster == null ? null : waybillnomaster.trim();
    }

    public String getWaybillnosecondary() {
        return waybillnosecondary;
    }

    public void setWaybillnosecondary(String waybillnosecondary) {
        this.waybillnosecondary = waybillnosecondary == null ? null : waybillnosecondary.trim();
    }

    public String getTotalweight() {
        return totalweight;
    }

    public void setTotalweight(String totalweight) {
        this.totalweight = totalweight == null ? null : totalweight.trim();
    }

    public String getTotalpiece() {
        return totalpiece;
    }

    public void setTotalpiece(String totalpiece) {
        this.totalpiece = totalpiece == null ? null : totalpiece.trim();
    }

    public String getPreparepiece() {
        return preparepiece;
    }

    public void setPreparepiece(String preparepiece) {
        this.preparepiece = preparepiece == null ? null : preparepiece.trim();
    }

    public String getPrepareweight() {
        return prepareweight;
    }

    public void setPrepareweight(String prepareweight) {
        this.prepareweight = prepareweight == null ? null : prepareweight.trim();
    }

    public String getProductname() {
        return productname;
    }

    public void setProductname(String productname) {
        this.productname = productname == null ? null : productname.trim();
    }

    public Date getStowagedate() {
        return stowagedate;
    }

    public void setStowagedate(Date stowagedate) {
        this.stowagedate = stowagedate;
    }

    public Date getCreatedate() {
        return createdate;
    }

    public void setCreatedate(Date createdate) {
        this.createdate = createdate;
    }

    public Short getPreparemasterid() {
        return preparemasterid;
    }

    public void setPreparemasterid(Short preparemasterid) {
        this.preparemasterid = preparemasterid;
    }

    public String getAutoid() {
        return autoid;
    }

    public void setAutoid(String autoid) {
        this.autoid = autoid;
    }

    public Date getModifyDate() {
        return modifyDate;
    }

    public void setModifyDate(Date modifyDate) {
        this.modifyDate = modifyDate;
    }

    public BigDecimal getModifier() {
        return modifier;
    }

    public void setModifier(BigDecimal modifier) {
        this.modifier = modifier;
    }

    public BigDecimal getIsDelete() {
        return isDelete;
    }

    public void setIsDelete(BigDecimal isDelete) {
        this.isDelete = isDelete;
    }

    public BigDecimal getCreator() {
        return creator;
    }

    public void setCreator(BigDecimal creator) {
        this.creator = creator;
    }

    public Date getCreateDate() {
        return createDate;
    }

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

    public String getFlightno() {
        return flightno;
    }

    public void setFlightno(String flightno) {
        this.flightno = flightno == null ? null : flightno.trim();
    }

    public Date getFlightdate() {
        return flightdate;
    }

    public void setFlightdate(Date flightdate) {
        this.flightdate = flightdate;
    }

    public String getOriginatingstation() {
        return originatingstation;
    }

    public void setOriginatingstation(String originatingstation) {
        this.originatingstation = originatingstation == null ? null : originatingstation.trim();
    }

    public String getDestinationstation() {
        return destinationstation;
    }

    public void setDestinationstation(String destinationstation) {
        this.destinationstation = destinationstation == null ? null : destinationstation.trim();
    }

    public String getAgentcompanycode() {
        return agentcompanycode;
    }

    public void setAgentcompanycode(String agentcompanycode) {
        this.agentcompanycode = agentcompanycode == null ? null : agentcompanycode.trim();
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status == null ? null : status.trim();
    }

    public String getCarrier() {
        return carrier;
    }

    public void setCarrier(String carrier) {
        this.carrier = carrier == null ? null : carrier.trim();
    }

    public String getCustomsstatus() {
        return customsstatus;
    }

    public void setCustomsstatus(String customsstatus) {
        this.customsstatus = customsstatus == null ? null : customsstatus.trim();
    }

    public String getPaymode() {
        return paymode;
    }

    public void setPaymode(String paymode) {
        this.paymode = paymode == null ? null : paymode.trim();
    }

    public String getSpecialgoodscode() {
        return specialgoodscode;
    }

    public void setSpecialgoodscode(String specialgoodscode) {
        this.specialgoodscode = specialgoodscode == null ? null : specialgoodscode.trim();
    }

    public String getCustomscode() {
        return customscode;
    }

    public void setCustomscode(String customscode) {
        this.customscode = customscode == null ? null : customscode.trim();
    }

    public String getAgentman() {
        return agentman;
    }

    public void setAgentman(String agentman) {
        this.agentman = agentman == null ? null : agentman.trim();
    }

    public String getAgentcompany() {
        return agentcompany;
    }

    public void setAgentcompany(String agentcompany) {
        this.agentcompany = agentcompany == null ? null : agentcompany.trim();
    }

    public String getReceiptinformation() {
        return receiptinformation;
    }

    public void setReceiptinformation(String receiptinformation) {
        this.receiptinformation = receiptinformation == null ? null : receiptinformation.trim();
    }

    public String getUnnumber() {
        return unnumber;
    }

    public void setUnnumber(String unnumber) {
        this.unnumber = unnumber == null ? null : unnumber.trim();
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category == null ? null : category.trim();
    }

    public String getShCompany() {
        return shCompany;
    }

    public void setShCompany(String shCompany) {
        this.shCompany = shCompany == null ? null : shCompany.trim();
    }

    public String getShAddress() {
        return shAddress;
    }

    public void setShAddress(String shAddress) {
        this.shAddress = shAddress == null ? null : shAddress.trim();
    }

    public String getShZipcode() {
        return shZipcode;
    }

    public void setShZipcode(String shZipcode) {
        this.shZipcode = shZipcode == null ? null : shZipcode.trim();
    }

    public String getShCity() {
        return shCity;
    }

    public void setShCity(String shCity) {
        this.shCity = shCity == null ? null : shCity.trim();
    }

    public String getShDeltaname() {
        return shDeltaname;
    }

    public void setShDeltaname(String shDeltaname) {
        this.shDeltaname = shDeltaname == null ? null : shDeltaname.trim();
    }

    public String getShCountry() {
        return shCountry;
    }

    public void setShCountry(String shCountry) {
        this.shCountry = shCountry == null ? null : shCountry.trim();
    }

    public String getShTelephone() {
        return shTelephone;
    }

    public void setShTelephone(String shTelephone) {
        this.shTelephone = shTelephone == null ? null : shTelephone.trim();
    }

    public String getShFax() {
        return shFax;
    }

    public void setShFax(String shFax) {
        this.shFax = shFax == null ? null : shFax.trim();
    }

    public String getShName() {
        return shName;
    }

    public void setShName(String shName) {
        this.shName = shName == null ? null : shName.trim();
    }

    public String getCoCompany() {
        return coCompany;
    }

    public void setCoCompany(String coCompany) {
        this.coCompany = coCompany == null ? null : coCompany.trim();
    }

    public String getCoAddress() {
        return coAddress;
    }

    public void setCoAddress(String coAddress) {
        this.coAddress = coAddress == null ? null : coAddress.trim();
    }

    public String getCoZipcode() {
        return coZipcode;
    }

    public void setCoZipcode(String coZipcode) {
        this.coZipcode = coZipcode == null ? null : coZipcode.trim();
    }

    public String getCoCity() {
        return coCity;
    }

    public void setCoCity(String coCity) {
        this.coCity = coCity == null ? null : coCity.trim();
    }

    public String getCoDeltaname() {
        return coDeltaname;
    }

    public void setCoDeltaname(String coDeltaname) {
        this.coDeltaname = coDeltaname == null ? null : coDeltaname.trim();
    }

    public String getCoCountry() {
        return coCountry;
    }

    public void setCoCountry(String coCountry) {
        this.coCountry = coCountry == null ? null : coCountry.trim();
    }

    public String getCoTelephone() {
        return coTelephone;
    }

    public void setCoTelephone(String coTelephone) {
        this.coTelephone = coTelephone == null ? null : coTelephone.trim();
    }

    public String getCoFax() {
        return coFax;
    }

    public void setCoFax(String coFax) {
        this.coFax = coFax == null ? null : coFax.trim();
    }

    public String getCoName() {
        return coName;
    }

    public void setCoName(String coName) {
        this.coName = coName == null ? null : coName.trim();
    }

    public String getReachStation() {
        return reachStation;
    }

    public void setReachStation(String reachStation) {
        this.reachStation = reachStation == null ? null : reachStation.trim();
    }

    public String getCarrier1() {
        return carrier1;
    }

    public void setCarrier1(String carrier1) {
        this.carrier1 = carrier1 == null ? null : carrier1.trim();
    }

    public String getReachStation1() {
        return reachStation1;
    }

    public void setReachStation1(String reachStation1) {
        this.reachStation1 = reachStation1 == null ? null : reachStation1.trim();
    }

    public String getCarrier2() {
        return carrier2;
    }

    public void setCarrier2(String carrier2) {
        this.carrier2 = carrier2 == null ? null : carrier2.trim();
    }

    public String getReachStation2() {
        return reachStation2;
    }

    public void setReachStation2(String reachStation2) {
        this.reachStation2 = reachStation2 == null ? null : reachStation2.trim();
    }

    public String getNameOfgoods() {
        return nameOfgoods;
    }

    public void setNameOfgoods(String nameOfgoods) {
        this.nameOfgoods = nameOfgoods == null ? null : nameOfgoods.trim();
    }

    public String getDeliveryStation() {
        return deliveryStation;
    }

    public void setDeliveryStation(String deliveryStation) {
        this.deliveryStation = deliveryStation == null ? null : deliveryStation.trim();
    }

    public String getShProvincecode() {
        return shProvincecode;
    }

    public void setShProvincecode(String shProvincecode) {
        this.shProvincecode = shProvincecode == null ? null : shProvincecode.trim();
    }

    public String getShProvincename() {
        return shProvincename;
    }

    public void setShProvincename(String shProvincename) {
        this.shProvincename = shProvincename == null ? null : shProvincename.trim();
    }

    public String getDeNumber() {
        return deNumber;
    }

    public void setDeNumber(String deNumber) {
        this.deNumber = deNumber == null ? null : deNumber.trim();
    }

    public String getDeWeight() {
        return deWeight;
    }

    public void setDeWeight(String deWeight) {
        this.deWeight = deWeight == null ? null : deWeight.trim();
    }

    public String getDeChweight() {
        return deChweight;
    }

    public void setDeChweight(String deChweight) {
        this.deChweight = deChweight == null ? null : deChweight.trim();
    }

    public String getDeSize() {
        return deSize;
    }

    public void setDeSize(String deSize) {
        this.deSize = deSize == null ? null : deSize.trim();
    }

    public String getDeVolume() {
        return deVolume;
    }

    public void setDeVolume(String deVolume) {
        this.deVolume = deVolume == null ? null : deVolume.trim();
    }

    public String getDeType() {
        return deType;
    }

    public void setDeType(String deType) {
        this.deType = deType == null ? null : deType.trim();
    }

    public String getDeTrstation() {
        return deTrstation;
    }

    public void setDeTrstation(String deTrstation) {
        this.deTrstation = deTrstation == null ? null : deTrstation.trim();
    }

    public String getDePacking() {
        return dePacking;
    }

    public void setDePacking(String dePacking) {
        this.dePacking = dePacking == null ? null : dePacking.trim();
    }

    public String getDeRemarks() {
        return deRemarks;
    }

    public void setDeRemarks(String deRemarks) {
        this.deRemarks = deRemarks == null ? null : deRemarks.trim();
    }

    public Short getDeIds() {
        return deIds;
    }

    public void setDeIds(Short deIds) {
        this.deIds = deIds;
    }

    public String getResponseCode() {
        return responseCode;
    }

    public void setResponseCode(String responseCode) {
        this.responseCode = responseCode == null ? null : responseCode.trim();
    }

    public String getResponseText() {
        return responseText;
    }

    public void setResponseText(String responseText) {
        this.responseText = responseText == null ? null : responseText.trim();
    }

    public Short getSaveTime() {
        return saveTime;
    }

    public void setSaveTime(Short saveTime) {
        this.saveTime = saveTime;
    }

    public Short getUserId() {
        return userId;
    }

    public void setUserId(Short userId) {
        this.userId = userId;
    }

    public String getShpaeo() {
        return shpaeo;
    }

    public void setShpaeo(String shpaeo) {
        this.shpaeo = shpaeo == null ? null : shpaeo.trim();
    }

    public String getCneaeo() {
        return cneaeo;
    }

    public void setCneaeo(String cneaeo) {
        this.cneaeo = cneaeo == null ? null : cneaeo.trim();
    }

    public String getShpcusid() {
        return shpcusid;
    }

    public void setShpcusid(String shpcusid) {
        this.shpcusid = shpcusid == null ? null : shpcusid.trim();
    }

    public String getCnecusid() {
        return cnecusid;
    }

    public void setCnecusid(String cnecusid) {
        this.cnecusid = cnecusid == null ? null : cnecusid.trim();
    }

    public String getUnlodingcode() {
        return unlodingcode;
    }

    public void setUnlodingcode(String unlodingcode) {
        this.unlodingcode = unlodingcode == null ? null : unlodingcode.trim();
    }
}