6 天以前 f569e2257372a2f940aace9ad151fd758196eb9a
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
package com.ruoyi.basic.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * 客户洽谈进度导出VO
 * 每行一条跟进记录,同时包含客户基本信息
 *
 * @author ruoyi
 * @date 2026-06-13
 */
@Data
public class CustomerFollowUpExportVo {
 
    @Excel(name = "客户名称")
    private String customerName;
 
    @Excel(name = "客户分类")
    private String customerType;
 
    @Excel(name = "联系人")
    private String contactPerson;
 
    @Excel(name = "联系电话")
    private String contactPhone;
 
    @Excel(name = "维护人")
    private String maintainer;
 
    @Excel(name = "跟进方式")
    private String followUpMethod;
 
    @Excel(name = "跟进程度")
    private String followUpLevel;
 
    @Excel(name = "跟进时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime followUpTime;
 
    @Excel(name = "跟进人")
    private String followerUserName;
 
    @Excel(name = "跟进内容")
    private String content;
}