Cui Zhi Feng
2024-08-31 fc3ff48eade6ad0a54c3ab0669b846bb9a51f4db
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
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;
}