liujie
2 天以前 3ae5f86787af4dca085e3013802c29b20a2a9d20
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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "crm业务员管理导出")
public class TCrmSalespersonExport implements Serializable {
 
    @Excel(name = "业务员姓名", width = 20)
    private String salespersonName;
 
    @Excel(name = "联系电话", width = 20)
    private String phone;
 
    @Excel(name = "所属分公司", width = 20)
    private String branchName;
 
    @Excel(name = "剩余积分数", width = 20)
    private Integer userPoints;
 
    @Excel(name = "分佣比例", width = 20)
    private BigDecimal moneyCommission;
 
    @Excel(name = "获取1积分所需采购金额", width = 20)
    private BigDecimal pointsCommission;
 
}