| | |
| | | package com.panzhihua.common.model.dtos.advertisement; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.panzhihua.common.validated.AddGroup; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.Min; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | @ApiModelProperty("广告位置id") |
| | | private Long posId; |
| | | |
| | | @ApiModelProperty(value = "上架时间--开始",example = "2021-01-04 00:00:00") |
| | | @ApiModelProperty(value = "上架时间--开始", example = "2021-01-04 00:00:00") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date onAtBegin; |
| | | |
| | | @ApiModelProperty(value = "上架时间--结束",example = "2021-01-04 00:00:00") |
| | | @ApiModelProperty(value = "上架时间--结束", example = "2021-01-04 00:00:00") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date onAtEnd; |
| | | |
| | | @ApiModelProperty(value = "下架时间--开始",example = "2024-01-04 00:00:00") |
| | | @ApiModelProperty(value = "下架时间--开始", example = "2024-01-04 00:00:00") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date offAtBegin; |
| | | |
| | | @ApiModelProperty(value = "下架时间--结束",example = "2024-01-04 00:00:00") |
| | | @ApiModelProperty(value = "下架时间--结束", example = "2024-01-04 00:00:00") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date offAtEnd; |
| | | |
| | | @ApiModelProperty(value = "当前页数",example = "1") |
| | | @ApiModelProperty(value = "当前页数", example = "1") |
| | | private Long pageNum; |
| | | |
| | | @ApiModelProperty(value = "每页记录数",example = "10") |
| | | @ApiModelProperty(value = "每页记录数", example = "10") |
| | | private Long pageSize; |
| | | } |