|  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import com.mzl.flower.base.AbstractTransDTO; | 
|---|
|  |  |  | import com.mzl.flower.base.annotation.DictTrans; | 
|---|
|  |  |  | import com.mzl.flower.entity.menber.Member; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
|---|
|  |  |  | 
|---|
|  |  |  | private String updateByName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会员等级") | 
|---|
|  |  |  | private String vipGrade; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Integer memberId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会员等级名称") | 
|---|
|  |  |  | private String memberName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "商户列表") | 
|---|
|  |  |  | List<CouponTemplateCustomerVO> customerList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会员等级对象") | 
|---|
|  |  |  | private Member member; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "发放时间") | 
|---|
|  |  |  | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") | 
|---|
|  |  |  | @DateTimeFormat | 
|---|
|  |  |  | private LocalDateTime createTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "优惠券图片") | 
|---|
|  |  |  | private String imageUrl; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|