对比新文件 |
| | |
| | | package com.thhy.secure.modules.biz.integralAccount.entity; |
| | | |
| | | import com.thhy.general.annotations.Excel; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @Author QiuYuHao |
| | | * @CreateDate 2023-11-27 17:38:37 |
| | | * 积分流水实体 |
| | | */ |
| | | @Builder |
| | | @Data |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | public class IntegralDetailEntity { |
| | | |
| | | private String id; |
| | | private Integer type;//1、获取 2、消耗 |
| | | private String typeName;//1、获取 2、消耗 |
| | | |
| | | private String integralSource;//积分怎么来的 |
| | | private String createUser; |
| | | private String companyId; |
| | | private String userId; |
| | | private Integer userType; |
| | | private Double balanc;//当前余额 |
| | | private Double changeIntegral;//变量在积分超市 修改前的变量 |
| | | |
| | | |
| | | private Date createTime; |
| | | @Excel(sort = 1,title = "时间") |
| | | private String createDate; |
| | | @Excel(sort = 2,title = "人员类别") |
| | | private String userTypeName; |
| | | @Excel(sort = 3,title = "人员姓名") |
| | | private String realName;//真实姓名 |
| | | @Excel(sort = 4,title = "积分") |
| | | private Double integralWater;//当前可改积分流水 |
| | | |
| | | @Excel(sort = 5,title = "说明") |
| | | private String remark;//说明 |
| | | } |