phpcjl
2024-12-05 a40ad9a47d99b40282ea6becb8cae78829a25e70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.account.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ApiModel("UserPointDetail对象")
public class UserPointDetailVO {
 
    @ApiModelProperty(value = "变动类型(1=消费积分,2=返佣积分,3=拉新人积分,4=兑换商品 5 = 门店业绩积分 6 =门店返佣积分7=技师业绩积分8 =转赠积分 9 =做工积分 10 =注册积分)")
    private Integer type;
 
    @ApiModelProperty(value = "变动金额")
    private Integer variablePoint;
 
    @ApiModelProperty(value = "变动时间")
    private LocalDateTime createTime;
 
}