jiangqs
2023-06-24 ec09e9f2c72ff37654076c327008ac89ed32a8c3
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
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.ruoyi.member.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author jqs34
 * @ClassName MgtMemberIntegralPageDto
 * @description: TODO
 * @date 2023年05月31日
 * @version: 1.0
 */
@Data
public class MgtMemberIntegralPageVo {
 
    @Excel(name = "记录id", width = 30)
    @ApiModelProperty(value = "记录id")
    private Long recordId;
 
    @Excel(name = "变动时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "变动时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    @Excel(name = "变动积分", width = 30)
    @ApiModelProperty(value = "变动积分")
    private Integer changeIntegral;
 
    @Excel(name = "剩余积分", width = 30)
    @ApiModelProperty(value = "剩余积分")
    private Integer surpIntegral;
 
    @Excel(name = "变动理由", width = 30)
    @ApiModelProperty(value = "变动理由")
    private String changeReason;
}