mitao
2024-12-03 2fda56177ac67539eafb5ed33fcbec488d2a1db5
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
package com.ruoyi.system.api.domain.dto;
 
import com.fasterxml.jackson.annotation.JsonInclude;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class updMembeOneDTO {
 
 
    @ApiModelProperty(value = "会员id")
    private Long memberId;
 
    @ApiModelProperty(value = "1 增加,2 减少")
    private Integer type;
 
    @ApiModelProperty(value = "会员积分")
    private Integer totalPoints;
 
    @ApiModelProperty(value = "用户消费金额")
    private BigDecimal money;
 
 
 
}