mitao
2024-09-21 f44e4d609e7efaed9eac545137970b1e334f8106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.system.api.domain.dto;
 
import com.ruoyi.common.core.enums.PointStatusEnum;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class MemberPointsDTO {
 
    @ApiModelProperty(value = "积分")
    private Integer points;
 
    @ApiModelProperty(value = "积分类型 1支付订单 2订单退款")
    private Integer pointsType;
 
    @ApiModelProperty(value = "积分状态 1是加积分,2 是减积分")
    private PointStatusEnum pointsStatus;
 
    @ApiModelProperty(value = "会员id")
    private Long memberId;
}