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
package cn.lili.modules.member.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 会员积分
 *
 * @author Bulbasaur
 * @since 2020/12/14 16:31
 */
@Data
public class MemberPointMessage {
 
    @ApiModelProperty(value = "积分")
    private Long point;
 
    @ApiModelProperty(value = "是否增加积分")
    private String type;
 
    @ApiModelProperty(value = "会员id")
    private String memberId;
}