liyong
2026-04-30 1aeb449a122a5b41d97c9b8e124e4b869d6114d8
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
package com.ruoyi.basic.excel;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
 
import java.time.LocalDateTime;
 
public class CustomerExcelDTO {
    @Excel(name = "客户名称")
    private String customerName;
    @Excel(name = "纳税人识别号")
    private String taxpayerIdentificationNumber;
    @Excel(name = "公司地址")
    private String companyAddress;
    @Excel(name = "公司电话")
    private String companyPhone;
    @Excel(name = "联系人")
    private String contactPerson;
    @Excel(name = "联系电话",cellType = Excel.ColumnType.STRING)
    private String contactPhone;
    @Excel(name = "维护人")
    private String maintainer;
    @Excel(name = "银行基本户")
    private String basicBankAccount;
    @Excel(name = "银行账号")
    private String bankAccount;
    @Excel(name = "开户行号")
    private String bankCode;
    @Excel(name = "跟进时间", dateFormat = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime followUpTime;
    @Excel(name = "跟进方式")
    private String followUpMethod;
    @Excel(name = "跟进程度")
    private String followUpLevel;
    @Excel(name = "跟进人姓名")
    private String followerUserName;
    @Excel(name = "内容")
    private String content;
}