gongchunyi
5 天以前 b3fc7c3428ddf036b1a632f62c694a3d28b1a306
src/main/java/com/ruoyi/basic/pojo/Customer.java
@@ -1,6 +1,8 @@
package com.ruoyi.basic.pojo;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.*;
@@ -27,11 +29,32 @@
    private Long id;
    /**
     * 地区ID
     */
    @ApiModelProperty("地区ID")
    private Long regionsId;
    /**
     * 客户名称
     */
    @Excel(name = "客户名称")
    private String customerName;
    /** 客户分类:零售客户,进销商客户 */
    /**
     * 跟进程度
     */
//    @Excel(name = "跟进程度")
    @TableField(exist = false)
    private String followUpLevel;
    /**
     * 跟进时间
     */
//    @Excel(name = "跟进时间" , width = 30, dateFormat = "yyyy-MM-dd")
    @TableField(exist = false)
    private Date followUpTime;
    @Excel(name = "客户分类")
    private String customerType;
@@ -63,7 +86,7 @@
    /**
     * 联系电话
     */
    @Excel(name = "联系电话")
    @Excel(name = "联系电话", cellType = Excel.ColumnType.STRING)
    private String contactPhone;
    /**
@@ -76,7 +99,7 @@
     * 维护时间
     */
    @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)
@@ -99,4 +122,5 @@
    @ApiModelProperty(value = "开户行号")
    @Excel(name = "开户行号")
    private String bankCode;
}