xiangpei
2025-06-12 8e25be6ee345ce5d11918943dcc41fa1d4b3a902
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
package cn.lili.modules.member.entity.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 会员积分VO
 *
 * @author Chopper
 * @since 2021/2/25 9:52 上午
 */
@Data
public class MemberPointsHistoryVO {
 
    @ApiModelProperty(value = "当前会员积分")
    private Long point;
 
    @ApiModelProperty(value = "累计获得积分")
    private Long totalPoint;
 
 
    public MemberPointsHistoryVO(){
        this.point = 0L;
        this.totalPoint = 0L;
    }
}