luodangjia
2024-12-10 ee7ce5d1cbf80bee0a15c1e5bc5eaa30858d812b
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
}