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