mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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;
}