|  |  | 
 |  |  | package com.mzl.flower.dto.response.member; | 
 |  |  |  | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.mzl.flower.base.AbstractTransDTO; | 
 |  |  | import com.mzl.flower.base.annotation.DictTrans; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | import lombok.Data; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  |  | 
 |  |  | import java.math.BigInteger; | 
 |  |  | import java.time.LocalDateTime; | 
 |  |  | 
 |  |  |     private Long id; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("记录日期") | 
 |  |  |     @JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8") | 
 |  |  |     @DateTimeFormat | 
 |  |  |     private Date recordDate; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty("成长值") |