package com.ots.project.tool.report.LAQ;
|
|
import com.ots.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @description: LAQ导入模板
|
* @author: zhijie
|
* @create: 2023-10-10 14:46
|
**/
|
@Data
|
public class LAQTemplate {
|
|
@Excel(name = "Name")
|
private String name;
|
|
@Excel(name = "E-mail")
|
private String email;
|
|
@Excel(name = "Scored on")
|
private Date scoredOn;
|
|
private String scoredOnStr;
|
|
@Excel(name = "Company")
|
private String company;
|
|
@Excel(name = "OLAS")
|
private BigDecimal olas;
|
|
@Excel(name = "CA")
|
private BigDecimal ca;
|
|
@Excel(name = "BLA")
|
private BigDecimal bla;
|
|
@Excel(name = "NR")
|
private BigDecimal nr;
|
|
@Excel(name = "AR")
|
private BigDecimal ar;
|
|
@Excel(name = "OPEN")
|
private BigDecimal open;
|
|
@Excel(name = "CONS")
|
private BigDecimal cons;
|
|
@Excel(name = "EXTRA")
|
private BigDecimal extra;
|
|
@Excel(name = "AGREE")
|
private BigDecimal agree;
|
|
@Excel(name = "EMOSTA")
|
private BigDecimal emosta;
|
}
|