McVisitAndIgnition.java 17.9 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 797 798 799 800 801 802 803
package com.chinagas.modules.schsf.domain;

import com.alibaba.excel.annotation.ExcelProperty;
import com.chinagas.common.core.web.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat;

import java.math.BigDecimal;
import java.time.LocalDateTime;

/**
 * 拜访工单对象 mc_visit
 *
 * @author cw
 * @date 2024-05-30
 */
public class McVisitAndIgnition extends BaseEntity  implements Cloneable
{

    /** 主键id */
    private Long id;

    /** 工单单号 */
    @ExcelProperty(value = "工单单号")
    private String ticketNumber;

    /** 财年 */
    @ExcelProperty(value = "财年")
    private Long fiscalYear;

    /** 区域名称 */
    @ExcelProperty(value = "区域名称")
    private String regionName;

    /** 集团名称 */
    @ExcelProperty(value = "集团名称")
    private String groupName;

    /** 公司名称 */
    @ExcelProperty(value = "公司名称")
    private String companyName;

    /** 公司代码 */
    @ExcelProperty(value = "公司代码")
    private String companyCode;

    /** 收费人ID */
    @ExcelProperty(value = "收费人ID")
    private Long billingPersonId;

    /** 收费人名称 */
    @ExcelProperty(value = "收费人名称")
    private String billingPersonName;

    /** 收费人账号 */
    @ExcelProperty(value = "收费人账号")
    private String billingPersonAccount;

    /** 工作性质(兼职/全职) */
    @ExcelProperty(value = "工作性质(兼职/全职)")
    private String jobNature;

    /** 入户时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelProperty(value = "入户时间")
    private LocalDateTime entryTime;

    /** 村(小区) */
    @ExcelProperty(value = "村(小区)")
    private String vlgOrCmty;

    /** 城乡分类 */
    @ExcelProperty(value = "城乡分类")
    private String urbRurCls;

    /** 客户-户名 */
    @ExcelProperty(value = "客户-户名")
    private String userName;

    /** 客户-电话 */
    @ExcelProperty(value = "客户-电话")
    private String userPhone;

    /** 客户-省 */
    @ExcelProperty(value = "客户-省")
    private String userProvince;

    /** 客户-市 */
    @ExcelProperty(value = "客户-市")
    private String userCity;

    /** 客户-区 */
    @ExcelProperty(value = "客户-区")
    private String userDistrict;

    /** 客户-街道 */
    @ExcelProperty(value = "客户-街道")
    private String userStreet;

    /** 客户-详细地址 */
    @ExcelProperty(value = "客户-详细地址")
    private String userDetailedAddress;







    /** 是否获取决策人信息 */
    @ExcelProperty(value = "是否获取决策人信息")
    private String hasDm;

    /** 决策人年龄 */
    @ExcelProperty(value = "决策人年龄")
    private String dmAge;

    /** 决策人收入来源 */
    @ExcelProperty(value = "决策人收入来源")
    private String dmIncomeSrc;

    /** 决策人联系方式 */
    @ExcelProperty(value = "决策人联系方式")
    private String dmPhone;






    /** 是否收费 */
    @ExcelProperty(value = "是否收费")
    private String isCharged;

    /** 客户-用户编号 */
    @ExcelProperty(value = "客户-用户编号")
    private String userCode;

    /** 身份证号 */
    @ExcelProperty(value = "身份证号")
    private String userIdCard;

    /** 票据单号 */
    @ExcelProperty(value = "票据单号")
    private String invoiceNo;

    /** 收费金额(元) */
    @ExcelProperty(value = "收费金额(元)")
    private BigDecimal chargeAmt;

    /** 缴费方式 */
    @ExcelProperty(value = "缴费方式")
    private String paymentMeth;

    /** 收费类型 */
    @ExcelProperty(value = "收费类型")
    private String chargeType;




    /** 是否拜访 */
    @ExcelProperty(value = "是否拜访")
    private String isVisited;

    /** 是否有意向 */
    @ExcelProperty(value = "是否有意向")
    private String isIntent;

    /** 房屋情况 */
    @ExcelProperty(value = "房屋情况")
    private String houseCondition;

    /** 现用做饭能源 */
    @ExcelProperty(value = "现用做饭能源")
    private String currentCookingEnergy;

    /** 现用取暖能源 */
    @ExcelProperty(value = "现用取暖能源")
    private String currentHeatingEnergy;

    /** 家庭人口情况 */
    @ExcelProperty(value = "家庭人口情况")
    private String familyMembers;

    /** 电冰箱 */
    @ExcelProperty(value = "电冰箱")
    private String fridgeStatus;

    /** 空调 */
    @ExcelProperty(value = "空调")
    private String acStatus;

    /** 电视 */
    @ExcelProperty(value = "电视")
    private String tvStatus;

    /** 洗衣机 */
    @ExcelProperty(value = "洗衣机")
    private String washerStatus;

    /** 热水器 */
    @ExcelProperty(value = "热水器")
    private String waterHeaterStatus;

    /** 光伏 */
    @ExcelProperty(value = "光伏")
    private String pvSystemStatus;

    /** 拜访_省 */
    @ExcelProperty(value = "拜访_省")
    private String visitProvince;

    /** 拜访_市 */
    @ExcelProperty(value = "拜访_市")
    private String visitCity;

    /** 拜访_区 */
    @ExcelProperty(value = "拜访_区")
    private String visitDistrict;

    /** 拜访_街道 */
    @ExcelProperty(value = "拜访_街道")
    private String visitStreet;

    /** 拜访_详细地址 */
    @ExcelProperty(value = "拜访_详细地址")
    private String visitDetailedAddress;

    /** 拜访_经度 */
    @ExcelProperty(value = "拜访_经度")
    private BigDecimal visitLongitude;

    /** 拜访_纬度 */
    @ExcelProperty(value = "拜访_纬度")
    private BigDecimal visitLatitude;

    /** 拜访现场照片(文件id,逗号分隔) */
    @ExcelProperty(value = "拜访现场照片(文件id,逗号分隔)")
    private String fieldPhotoFile;

    /** 附件(文件id,逗号分隔) */
    @ExcelProperty(value = "附件(文件id,逗号分隔)")
    private String attachmentFile;


    /** 删除标志(0:未删除,1:已删除) */
    @ExcelProperty(value = "删除标志")
    private String defFlag;

    /** 工单类型 */
    @ExcelProperty(value = "工单类型")
    private String ticketType;

    /** 发布状态 */
    private String publishStatus;
    /** 修改状态 */
    private String modificationStatus;
    /** 状态节点名称 */
    private String statusNodeName;

    /** 状态名称 */
    private String statusName;
    /** 状态名称 */
    private String statusCode;

    /**
     * 应收年份类型(往年应收/本年新增)
     */
    private String invoiceYearType;


    /**
     * 点火确认状态代码(NULL:未确认,Y:是,N:否)
     */
    @ExcelProperty(value = "点火确认状态代码(NULL:未确认,Y:是,N:否)")
    private String ignCnfStatusCode;

    /**
     * 点火时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelProperty(value = "点火时间")
    private LocalDateTime ignTime;

    /**
     * 未点火原因
     */
    @ExcelProperty(value = "未点火原因")
    private String nIgnRsn;


    public Long getId() {
        return id;
    }

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

    public String getTicketNumber() {
        return ticketNumber;
    }

    public void setTicketNumber(String ticketNumber) {
        this.ticketNumber = ticketNumber;
    }

    public Long getFiscalYear() {
        return fiscalYear;
    }

    public void setFiscalYear(Long fiscalYear) {
        this.fiscalYear = fiscalYear;
    }

    public String getRegionName() {
        return regionName;
    }

    public void setRegionName(String regionName) {
        this.regionName = regionName;
    }

    public String getGroupName() {
        return groupName;
    }

    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }

    public String getCompanyName() {
        return companyName;
    }

    public void setCompanyName(String companyName) {
        this.companyName = companyName;
    }

    public String getCompanyCode() {
        return companyCode;
    }

    public void setCompanyCode(String companyCode) {
        this.companyCode = companyCode;
    }

    public Long getBillingPersonId() {
        return billingPersonId;
    }

    public void setBillingPersonId(Long billingPersonId) {
        this.billingPersonId = billingPersonId;
    }

    public String getBillingPersonName() {
        return billingPersonName;
    }

    public void setBillingPersonName(String billingPersonName) {
        this.billingPersonName = billingPersonName;
    }

    public String getBillingPersonAccount() {
        return billingPersonAccount;
    }

    public void setBillingPersonAccount(String billingPersonAccount) {
        this.billingPersonAccount = billingPersonAccount;
    }

    public String getJobNature() {
        return jobNature;
    }

    public void setJobNature(String jobNature) {
        this.jobNature = jobNature;
    }

    public LocalDateTime getEntryTime() {
        return entryTime;
    }

    public void setEntryTime(LocalDateTime entryTime) {
        this.entryTime = entryTime;
    }

    public String getVlgOrCmty() {
        return vlgOrCmty;
    }

    public void setVlgOrCmty(String vlgOrCmty) {
        this.vlgOrCmty = vlgOrCmty;
    }

    public String getUrbRurCls() {
        return urbRurCls;
    }

    public void setUrbRurCls(String urbRurCls) {
        this.urbRurCls = urbRurCls;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getUserPhone() {
        return userPhone;
    }

    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }

    public String getUserProvince() {
        return userProvince;
    }

    public void setUserProvince(String userProvince) {
        this.userProvince = userProvince;
    }

    public String getUserCity() {
        return userCity;
    }

    public void setUserCity(String userCity) {
        this.userCity = userCity;
    }

    public String getUserDistrict() {
        return userDistrict;
    }

    public void setUserDistrict(String userDistrict) {
        this.userDistrict = userDistrict;
    }

    public String getUserStreet() {
        return userStreet;
    }

    public void setUserStreet(String userStreet) {
        this.userStreet = userStreet;
    }

    public String getUserDetailedAddress() {
        return userDetailedAddress;
    }

    public void setUserDetailedAddress(String userDetailedAddress) {
        this.userDetailedAddress = userDetailedAddress;
    }

    public String getHasDm() {
        return hasDm;
    }

    public void setHasDm(String hasDm) {
        this.hasDm = hasDm;
    }

    public String getDmAge() {
        return dmAge;
    }

    public void setDmAge(String dmAge) {
        this.dmAge = dmAge;
    }

    public String getDmIncomeSrc() {
        return dmIncomeSrc;
    }

    public void setDmIncomeSrc(String dmIncomeSrc) {
        this.dmIncomeSrc = dmIncomeSrc;
    }

    public String getDmPhone() {
        return dmPhone;
    }

    public void setDmPhone(String dmPhone) {
        this.dmPhone = dmPhone;
    }

    public String getIsCharged() {
        return isCharged;
    }

    public void setIsCharged(String isCharged) {
        this.isCharged = isCharged;
    }

    public String getUserCode() {
        return userCode;
    }

    public void setUserCode(String userCode) {
        this.userCode = userCode;
    }

    public String getUserIdCard() {
        return userIdCard;
    }

    public void setUserIdCard(String userIdCard) {
        this.userIdCard = userIdCard;
    }

    public String getInvoiceNo() {
        return invoiceNo;
    }

    public void setInvoiceNo(String invoiceNo) {
        this.invoiceNo = invoiceNo;
    }

    public BigDecimal getChargeAmt() {
        return chargeAmt;
    }

    public void setChargeAmt(BigDecimal chargeAmt) {
        this.chargeAmt = chargeAmt;
    }

    public String getPaymentMeth() {
        return paymentMeth;
    }

    public void setPaymentMeth(String paymentMeth) {
        this.paymentMeth = paymentMeth;
    }

    public String getChargeType() {
        return chargeType;
    }

    public void setChargeType(String chargeType) {
        this.chargeType = chargeType;
    }

    public String getIsVisited() {
        return isVisited;
    }

    public void setIsVisited(String isVisited) {
        this.isVisited = isVisited;
    }

    public String getIsIntent() {
        return isIntent;
    }

    public void setIsIntent(String isIntent) {
        this.isIntent = isIntent;
    }

    public String getHouseCondition() {
        return houseCondition;
    }

    public void setHouseCondition(String houseCondition) {
        this.houseCondition = houseCondition;
    }

    public String getCurrentCookingEnergy() {
        return currentCookingEnergy;
    }

    public void setCurrentCookingEnergy(String currentCookingEnergy) {
        this.currentCookingEnergy = currentCookingEnergy;
    }

    public String getCurrentHeatingEnergy() {
        return currentHeatingEnergy;
    }

    public void setCurrentHeatingEnergy(String currentHeatingEnergy) {
        this.currentHeatingEnergy = currentHeatingEnergy;
    }

    public String getFamilyMembers() {
        return familyMembers;
    }

    public void setFamilyMembers(String familyMembers) {
        this.familyMembers = familyMembers;
    }

    public String getFridgeStatus() {
        return fridgeStatus;
    }

    public void setFridgeStatus(String fridgeStatus) {
        this.fridgeStatus = fridgeStatus;
    }

    public String getAcStatus() {
        return acStatus;
    }

    public void setAcStatus(String acStatus) {
        this.acStatus = acStatus;
    }

    public String getTvStatus() {
        return tvStatus;
    }

    public void setTvStatus(String tvStatus) {
        this.tvStatus = tvStatus;
    }

    public String getWasherStatus() {
        return washerStatus;
    }

    public void setWasherStatus(String washerStatus) {
        this.washerStatus = washerStatus;
    }

    public String getWaterHeaterStatus() {
        return waterHeaterStatus;
    }

    public void setWaterHeaterStatus(String waterHeaterStatus) {
        this.waterHeaterStatus = waterHeaterStatus;
    }

    public String getPvSystemStatus() {
        return pvSystemStatus;
    }

    public void setPvSystemStatus(String pvSystemStatus) {
        this.pvSystemStatus = pvSystemStatus;
    }

    public String getVisitProvince() {
        return visitProvince;
    }

    public void setVisitProvince(String visitProvince) {
        this.visitProvince = visitProvince;
    }

    public String getVisitCity() {
        return visitCity;
    }

    public void setVisitCity(String visitCity) {
        this.visitCity = visitCity;
    }

    public String getVisitDistrict() {
        return visitDistrict;
    }

    public void setVisitDistrict(String visitDistrict) {
        this.visitDistrict = visitDistrict;
    }

    public String getVisitStreet() {
        return visitStreet;
    }

    public void setVisitStreet(String visitStreet) {
        this.visitStreet = visitStreet;
    }

    public String getVisitDetailedAddress() {
        return visitDetailedAddress;
    }

    public void setVisitDetailedAddress(String visitDetailedAddress) {
        this.visitDetailedAddress = visitDetailedAddress;
    }

    public BigDecimal getVisitLongitude() {
        return visitLongitude;
    }

    public void setVisitLongitude(BigDecimal visitLongitude) {
        this.visitLongitude = visitLongitude;
    }

    public BigDecimal getVisitLatitude() {
        return visitLatitude;
    }

    public void setVisitLatitude(BigDecimal visitLatitude) {
        this.visitLatitude = visitLatitude;
    }

    public String getFieldPhotoFile() {
        return fieldPhotoFile;
    }

    public void setFieldPhotoFile(String fieldPhotoFile) {
        this.fieldPhotoFile = fieldPhotoFile;
    }

    public String getAttachmentFile() {
        return attachmentFile;
    }

    public void setAttachmentFile(String attachmentFile) {
        this.attachmentFile = attachmentFile;
    }

    public String getDefFlag() {
        return defFlag;
    }

    public void setDefFlag(String defFlag) {
        this.defFlag = defFlag;
    }

    public String getTicketType() {
        return ticketType;
    }

    public void setTicketType(String ticketType) {
        this.ticketType = ticketType;
    }

    public String getPublishStatus() {
        return publishStatus;
    }

    public void setPublishStatus(String publishStatus) {
        this.publishStatus = publishStatus;
    }

    public String getModificationStatus() {
        return modificationStatus;
    }

    public void setModificationStatus(String modificationStatus) {
        this.modificationStatus = modificationStatus;
    }

    public String getStatusNodeName() {
        return statusNodeName;
    }

    public void setStatusNodeName(String statusNodeName) {
        this.statusNodeName = statusNodeName;
    }

    public String getStatusName() {
        return statusName;
    }

    public void setStatusName(String statusName) {
        this.statusName = statusName;
    }

    public String getStatusCode() {
        return statusCode;
    }

    public void setStatusCode(String statusCode) {
        this.statusCode = statusCode;
    }

    public String getInvoiceYearType() {
        return invoiceYearType;
    }

    public void setInvoiceYearType(String invoiceYearType) {
        this.invoiceYearType = invoiceYearType;
    }

    public String getIgnCnfStatusCode() {
        return ignCnfStatusCode;
    }

    public void setIgnCnfStatusCode(String ignCnfStatusCode) {
        this.ignCnfStatusCode = ignCnfStatusCode;
    }

    public LocalDateTime getIgnTime() {
        return ignTime;
    }

    public void setIgnTime(LocalDateTime ignTime) {
        this.ignTime = ignTime;
    }

    public String getnIgnRsn() {
        return nIgnRsn;
    }

    public void setnIgnRsn(String nIgnRsn) {
        this.nIgnRsn = nIgnRsn;
    }
}