zxl
5 天以前 2701dca44e1972afe9956ced2f949d2998c1bb4b
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;
    }
}