| | |
| | | @ApiModelProperty(value = "有效期开始时间") |
| | | @TableField("period_start_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDateTime periodStartTime; |
| | | private LocalDate periodStartTime; |
| | | |
| | | @ApiModelProperty(value = "有效期结束时间") |
| | | @TableField("period_end_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDateTime periodEndTime; |
| | | private LocalDate periodEndTime; |
| | | |
| | | @ApiModelProperty(value = "领取后x天有效") |
| | | @TableField("period_days") |
| | |
| | | @ApiModelProperty(value = "其他商品名称") |
| | | @TableField(exist = false) |
| | | private List<String> goodsNameList; |
| | | |
| | | public String getIdStr(){ |
| | | return String.valueOf(id); |
| | | } |
| | | } |