xuhy
2 天以前 62b287b8fc5d0b4d3ac3cfd5b748f256b8693505
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;
import java.time.LocalDateTime;
 
@Data
@ApiModel(value = "诊所积分变更明细导出TCrmChangePointsClinicExport")
public class TCrmChangePointsClinicExport implements Serializable {
 
    @Excel(name = "诊所名称",width = 20)
    private String clinicName;
    @Excel(name = "变更类型",width = 20,replace = {"增加_1","减少_2"})
    private Integer changeType;
    @Excel(name = "变更原因",width = 20,replace = {"诊所采购_1","商城兑换_2","管理员修改_3"})
    private Integer changeReason;
    @Excel(name = "变更数量",width = 20)
    private Integer changeValue;
    @Excel(name = "采购单号",width = 20)
    private String procurementCode;
    @Excel(name = "采购金额",width = 20)
    private String payMoneyStr;
    private BigDecimal payMoney;
    @Excel(name = "变更时间",width = 20)
    private String createTimeStr;
    private LocalDateTime createTime;
    private String procurementId;
}