cloudroam
2024-08-29 68b182ab510ef8d323ab8cb5f5ebc8bd108d19ca
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("名称")
    private String userId;
 
    @ApiModelProperty("联系人")
    private Long customerId;
 
    @ApiModelProperty("总积分")
    private String totalPoint;
 
    @ApiModelProperty("使用积分")
    private String usedPoint;
 
    @ApiModelProperty("过期积分")
    private String expiredPoint;
}