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