| | |
| | | package com.ruoyi.basic.pojo; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * 客户档案对象 customer |
| | |
| | | private String customerName; |
| | | /** 客户分类:零售客户,进销商客户 */ |
| | | |
| | | |
| | | /** |
| | | * 跟进程度 |
| | | */ |
| | | @Excel(name = "跟进程度") |
| | | @TableField(exist = false) |
| | | private String followUpLevel; |
| | | |
| | | /** |
| | | * 跟进时间 |
| | | */ |
| | | @ExcelProperty(value = "跟进时间", format = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField(exist = false) |
| | | private LocalDateTime followUpTime; |
| | | |
| | | @Excel(name = "客户分类") |
| | | private String customerType; |
| | | |