| 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 = "分公司积分变更明细导出TCrmChangePointsBranchExport") | 
| public class TCrmChangePointsBranchExport implements Serializable { | 
|   | 
|     @Excel(name = "分公司名称",width = 20) | 
|     private String branchName; | 
|     @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 clinicName; | 
|     @Excel(name = "采购金额",width = 20) | 
|     private String payMoneyStr; | 
|     private BigDecimal payMoney; | 
|     @Excel(name = "变更时间",width = 20) | 
|     private String createTimeStr; | 
|     private LocalDateTime createTime; | 
|     @Excel(name = "备注",width = 20) | 
|     private String remarks; | 
|     private String procurementId; | 
| } |