package cn.iocoder.yudao.module.promotion.controller.admin.seckill.vo.activity;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.TIME_ZONE_DEFAULT;
|
|
@Schema(description = "管理后台 - 秒杀活动分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class SeckillActivityPageReqVO extends PageParam {
|
|
@Schema(description = "秒杀活动名称", example = "晚九点限时秒杀")
|
private String name;
|
|
@Schema(description = "活动状态", example = "进行中")
|
private Integer status;
|
|
@Schema(description = "秒杀时段id", example = "1")
|
private Long configId;
|
|
@Schema(description = "创建时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND, timezone = TIME_ZONE_DEFAULT)
|
private LocalDateTime[] createTime;
|
|
}
|