| | |
| | | package com.xinquan.user.domain.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * @author mitao |
| | |
| | | private Integer energyValue; |
| | | @ApiModelProperty(value = "1待领取 2已领取") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "兑换码") |
| | | private String code; |
| | | @ApiModelProperty(value = "兑换时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | private LocalDateTime createTime; |
| | | @ApiModelProperty(value = "操作时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") |
| | | private LocalDateTime updateTime; |
| | | @ApiModelProperty(value = "操作人") |
| | | private String updateBy; |
| | | |
| | | |
| | | } |