package com.hollywood.manage.excel;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* DR考勤明细 导出实体
|
*
|
* @author yunfei
|
* @since 2022-09-13
|
*/
|
@Data
|
public class SalesReportAttendanceStatisticsDRExcel implements Serializable {
|
@Excel(name = "账号", width = 15)
|
private String account;
|
|
@Excel(name = "姓名", width = 15)
|
private String userName;
|
|
@Excel(name = "区域", width = 15)
|
private String area;
|
|
@Excel(name = "岗位", width = 15)
|
private String position;
|
|
@Excel(name = "计划内拜访门店数", width = 15)
|
private Integer plannedShopCount;
|
|
@Excel(name = "计划内已拜访门店数", width = 15)
|
private Integer completedShopCount;
|
|
@Excel(name = "计划内完成率", width = 15)
|
private String completeRate;
|
|
@Excel(name = "要求拜访门店数", width = 15)
|
private Integer targetShopCount;
|
|
@Excel(name = "实际拜访门店数", width = 15)
|
private Integer practicalShopCount;
|
|
@Excel(name = "达标率", width = 15)
|
private String controlRate;
|
|
@Excel(name = "计划外拜访门店数", width = 15)
|
private Integer planOutShopCount;
|
|
@Excel(name = "计划外已拜访门店数", width = 15)
|
private Integer completedOutShopCount;
|
|
@Excel(name = "非目标拜访门店数", width = 15)
|
private Integer noPlanShopCount;
|
}
|