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;
|
}
|