AdvertisingQueryVo.java 1.5 KB
Newer Older
licc's avatar
licc committed
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
package cn.wisenergy.model.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

/**
*@ Description: 广告分页查询Vo
*@ Author     : 86187
*@ Date       : 2021/1/7 17:13
*/
@Data
@ApiModel(value = "AdvertisingQueryVo")
public class AdvertisingQueryVo implements Serializable {
    private static final long serialVersionUID = 8066049220539686367L;

    /**
     * 关键词
     */
    @ApiModelProperty(value = "关键词", name = "keyword")
    private String keyword;

26 27 28 29 30 31 32 33 34 35 36 37
    /**
     * 广告类型: 1:顶部广告 2:底部广告
     */
    @ApiModelProperty(value = "广告类型: 1:顶部广告 2:底部广告",name = "type")
    private Integer type;

    /**
     * 投放状态 0:暂停中 1:投放中
     */
    @ApiModelProperty(value = "投放状态 0:暂停中 1:投放中",name = "status")
    private Integer status;

licc's avatar
licc committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    /**
     * 开始时间
     */
    @ApiModelProperty(value = "开始时间", name = "startTime")
    private Date startTime;

    /**
     * 结束时间
     */
    @ApiModelProperty(value = "结束时间", name = "endTime")
    private Date endTime;

    /**
     * 起始页
     */
    @ApiModelProperty(value = "起始页", name = "pageNo")
    private Integer pageNo;

    /**
     * 页大小
     */
    @ApiModelProperty(value = "页大小", name = "pageSize")
    private Integer pageSize;

    private Integer startNum;

    private Integer endNum;
}