xuhy
2025-10-11 441eb455e1e8a9283cd569c132b14ba8da4c54a6
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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "诊所审核导出TCrmClinicAuditExport")
public class TCrmClinicListExport implements Serializable {
    private String id;
    @Excel(name = "诊所名称",width = 20)
    private String clinicName;
    @Excel(name = "负责人姓名",width = 20)
    private String personChargeName;
    @Excel(name = "联系电话",width = 20)
    private String phone;
    @Excel(name = "所属分公司",width = 20)
    private String branchName;
    @Excel(name = "负责业务员",width = 20)
    private String salespersonName;
    @Excel(name = "剩余积分",width = 20)
    private Integer userPoints;
    @Excel(name = "每月最低采购金额",width = 20)
    private String lowProcurementMoneyStr;
    private BigDecimal lowProcurementMoney;
    @Excel(name = "当月采购金额",width = 20)
    private String monthPurchaseAmountStr;
    private BigDecimal monthPurchaseAmount;
    @Excel(name = "业绩状态",width = 20,replace = {"未达成_1","已达成_2"})
    private Integer performanceStatus;
    @Excel(name = "状态",width = 20,replace = {"待审核_1","已拒绝_2","使用中_3","冻结_4"})
    private Integer status;
}