| | |
| | | @ApiModelProperty(value = "领取后有效类型名称") |
| | | private String usageTimeTypeName; |
| | | |
| | | /** |
| | | * 有效开始时间 |
| | | */ |
| | | @ApiModelProperty(value = "有效开始时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") |
| | | @DateTimeFormat |
| | | private LocalDateTime effectiveStart; |
| | | |
| | | /** |
| | | * 有效结束时间 |
| | | */ |
| | | @ApiModelProperty(value = "有效结束时间") |
| | | @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss" ,timezone="GMT+8") |
| | | @DateTimeFormat |
| | | private LocalDateTime effectiveEnd; |
| | | |
| | | |
| | | /** |
| | | * 优惠券图片 |
| | | */ |
| | | @ApiModelProperty(value = "优惠券图片") |
| | | private String imageUrl; |
| | | |
| | | /** |
| | | * 已经领取数 |
| | | */ |
| | | @ApiModelProperty(value = "已经领取数") |
| | | private Integer getNum; |
| | | |
| | | @ApiModelProperty(value = "优惠券是否已领取") |
| | | private Boolean getYetFlag; |
| | | |
| | | |
| | | } |