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;
|
}
|