buhuazhen
7 天以前 a0c9adb1e44f502c0473e9aafb7545981173b130
src/main/java/com/ruoyi/basic/pojo/Customer.java
@@ -1,6 +1,7 @@
package com.ruoyi.basic.pojo;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
@@ -38,36 +39,36 @@
    /**
     * 跟进程度
     */
    @Excel(name = "跟进程度")
//    @Excel(name = "跟进程度")
    @TableField(exist = false)
    private String followUpLevel;
    /**
     * 跟进时间
     */
    @Excel(name = "跟进时间")
//    @Excel(name = "跟进时间" , width = 30, dateFormat = "yyyy-MM-dd")
    @TableField(exist = false)
    private LocalDateTime followUpTime;
    private Date followUpTime;
    @Excel(name = "客户分类")
//    @Excel(name = "客户分类")
    private String customerType;
    /**
     * 纳税人识别号
     */
    @Excel(name = "纳税人识别号")
//    @Excel(name = "纳税人识别号")
    private String taxpayerIdentificationNumber;
    /**
     * 公司地址
     */
    @Excel(name = "公司地址")
//    @Excel(name = "公司地址")
    private String companyAddress;
    /**
     * 公司电话
     */
    @Excel(name = "公司电话")
//    @Excel(name = "公司电话")
    private String companyPhone;
    /**
@@ -79,20 +80,20 @@
    /**
     * 联系电话
     */
    @Excel(name = "联系电话")
    @Excel(name = "联系电话",cellType = Excel.ColumnType.STRING)
    private String contactPhone;
    /**
     * 维护人
     */
    @Excel(name = "维护人")
//    @Excel(name = "维护人")
    private String maintainer;
    /**
     * 维护时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "维护时间" , width = 30, dateFormat = "yyyy-MM-dd")
//    @Excel(name = "维护时间" , width = 30, dateFormat = "yyyy-MM-dd")
    private Date maintenanceTime;
    @TableField(fill = FieldFill.INSERT)
@@ -105,14 +106,14 @@
    private String addressPhone;
    @ApiModelProperty(value = "银行基本户")
    @Excel(name = "银行基本户")
//    @Excel(name = "银行基本户")
    private String basicBankAccount;
    @ApiModelProperty(value = "银行账号")
    @Excel(name = "银行账号")
//    @Excel(name = "银行账号")
    private String bankAccount;
    @ApiModelProperty(value = "开户行号")
    @Excel(name = "开户行号")
//    @Excel(name = "开户行号")
    private String bankCode;
}