package com.ruoyi.system.export; import cn.afterturn.easypoi.excel.annotation.Excel; import cn.afterturn.easypoi.excel.annotation.ExcelCollection; import com.ruoyi.system.model.TCrmBranchSalary; import io.swagger.annotations.ApiModel; import lombok.Data; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; @Data @ApiModel(value = "crm分公司管理导出TCrmBranchExport") public class TCrmBranchExport implements Serializable { @Excel(name = "分公司名称", width = 20,needMerge = true) private String branchName; @Excel(name = "负责人姓名", width = 20,needMerge = true) private String userName; @Excel(name = "联系电话", width = 20,needMerge = true) private String phone; @Excel(name = "剩余积分数", width = 20,needMerge = true) private Integer userPoints; @Excel(name = "管辖区域", width = 20,needMerge = true) private String areaNames; @Excel(name = "获取1积分所需采购金额", width = 20,needMerge = true) private BigDecimal pointsCommission; @Excel(name = "分佣比例", width = 20,needMerge = true) private BigDecimal moneyCommission; @ExcelCollection(name = "职位薪资") private List crmBranchSalaries; private String id; }