| | |
| | | package com.ruoyi.other.api.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | |
| | | @ApiModelProperty(value = "添加时间") |
| | | @TableField("create_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "优惠券名称") |
| | |
| | | |
| | | @ApiModelProperty(value = "有效期开始时间") |
| | | @TableField("period_start_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime periodStartTime; |
| | | |
| | | @ApiModelProperty(value = "有效期结束时间") |
| | | @TableField("period_end_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime periodEndTime; |
| | | |
| | | @ApiModelProperty(value = "领取后x天有效") |
| | |
| | | |
| | | @ApiModelProperty(value = "开始发放时间") |
| | | @TableField("send_start_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime sendStartTime; |
| | | |
| | | @ApiModelProperty(value = "结束发放时间") |
| | | @TableField("send_end_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime sendEndTime; |
| | | |
| | | @ApiModelProperty(value = "1免费发放2积分兑换") |