ChargedListDto.java 8.31 KB
package com.chinagas.modules.schsf.domain.dto;

import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.format.DateTimeFormat;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.fasterxml.jackson.annotation.JsonFormat;

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

@ExcelIgnoreUnannotated
public class ChargedListDto {
    /**
     * 入户时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelProperty(value = "入户时间")
    @ColumnWidth(26)
    @DateTimeFormat("yyyy-MM-dd HH:mm:ss")
    private LocalDateTime entryTime;

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


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

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


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

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

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

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

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

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


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

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

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

    /** 票据单号 */
    @ColumnWidth(20)
    @ExcelProperty(value = {"收费阶段","票据单号"})
    private String invoiceNo;

    /** 收费金额(元) */
    @ColumnWidth(20)
    @ExcelProperty(value = {"收费阶段","收费金额(元)"})
    private BigDecimal chargeAmt;

    /** 缴费方式 */
    @ColumnWidth(20)
    @ExcelProperty(value = {"收费阶段","缴费方式"})
    private String paymentMeth;

    /** 收费类型 */
    @ColumnWidth(20)
    @ExcelProperty(value = {"收费阶段","收费类型"})
    private String chargeType;



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

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

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


    @ExcelProperty(value = "更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ColumnWidth(26)
    @DateTimeFormat("yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;

    public LocalDateTime getEntryTime() {
        return entryTime;
    }

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

    public String getBillingPersonName() {
        return billingPersonName;
    }

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

    public String getJobNature() {
        return jobNature;
    }

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

    public String getCompanyName() {
        return companyName;
    }

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

    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 getVlgOrCmty() {
        return vlgOrCmty;
    }

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

    public String getUserDetailedAddress() {
        return userDetailedAddress;
    }

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

    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 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 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;
    }

    public LocalDateTime getUpdateTime() {
        return updateTime;
    }

    public void setUpdateTime(LocalDateTime updateTime) {
        this.updateTime = updateTime;
    }

    public ChargedListDto() {
    }

    public ChargedListDto(LocalDateTime entryTime, String billingPersonName, String jobNature, String companyName, String userProvince, String userCity, String userDistrict, String userStreet, String vlgOrCmty, String userDetailedAddress, String userName, String userPhone, String userIdCard, String invoiceNo, BigDecimal chargeAmt, String paymentMeth, String chargeType, String ignCnfStatusCode, LocalDateTime ignTime, String nIgnRsn, LocalDateTime updateTime) {
        this.entryTime = entryTime;
        this.billingPersonName = billingPersonName;
        this.jobNature = jobNature;
        this.companyName = companyName;
        this.userProvince = userProvince;
        this.userCity = userCity;
        this.userDistrict = userDistrict;
        this.userStreet = userStreet;
        this.vlgOrCmty = vlgOrCmty;
        this.userDetailedAddress = userDetailedAddress;
        this.userName = userName;
        this.userPhone = userPhone;
        this.userIdCard = userIdCard;
        this.invoiceNo = invoiceNo;
        this.chargeAmt = chargeAmt;
        this.paymentMeth = paymentMeth;
        this.chargeType = chargeType;
        this.ignCnfStatusCode = ignCnfStatusCode;
        this.ignTime = ignTime;
        this.nIgnRsn = nIgnRsn;
        this.updateTime = updateTime;
    }
}