package com.panzhihua.common.model.dtos.advertisement;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @program: springcloud_k8s_panzhihuazhihuishequ
|
* @description: 分页广告查询
|
* @author: huang.hongfa weixin hhf9596 qq 959656820
|
* @create: 2021-01-27 10:26
|
**/
|
@Data
|
@ApiModel(value = "分页广告查询")
|
public class PageComOpsAdvDTO {
|
|
@ApiModelProperty("广告位置id")
|
private Long posId;
|
|
@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")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date onAtEnd;
|
|
@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")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date offAtEnd;
|
|
@ApiModelProperty(value = "当前页数", example = "1")
|
private Long pageNum;
|
|
@ApiModelProperty(value = "每页记录数", example = "10")
|
private Long pageSize;
|
}
|