| package com.mzl.flower.entity.point; | 
|   | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoEntity; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @TableName("t_customer_point") | 
| public class CustomerPoint extends BaseAutoEntity { | 
|   | 
|     @ApiModelProperty("用户ID") | 
|     private String userId; | 
|   | 
|     @ApiModelProperty("商户ID") | 
|     private Long customerId; | 
|   | 
|     @ApiModelProperty("总积分") | 
|     private Integer totalPoint; | 
|   | 
|     @ApiModelProperty("使用积分") | 
|     private Integer usedPoint; | 
|   | 
|     @ApiModelProperty("过期积分") | 
|     private Integer expiredPoint; | 
| } |