huliguo
6 天以前 3348eda2c33469e9935ae6afcf83ea5c52cea906
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.account.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class UserPointStatisticsPageVO {
    @ApiModelProperty("用户名")
    private String name;
    @ApiModelProperty("手机号")
    private String phone;
    @ApiModelProperty(value = "变动类型(4=兑换商品,12=他人赠送,13=赠与他人,16=取消订单,17=充值 )")
    private Integer type;
    @ApiModelProperty(value = "变动金额")
    private Integer variablePoint;
    @ApiModelProperty("订单编号")
    private Long objectId;
    @ApiModelProperty(value = "变动时间")
    private String createTime;
 
    @ApiModelProperty("订单编号")
    private String objectIdStr;
}