| | |
| | | package com.panzhihua.common.model.vos.advertisement; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty("自增id") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("广告位置id") |
| | | @ApiModelProperty("广告位置id 1 表示放在首页") |
| | | private Integer posId; |
| | | |
| | | @ApiModelProperty("广告位置名字") |
| | | private String advDesc; |
| | | |
| | | @ApiModelProperty("图片路径") |
| | | private String photoPath; |
| | |
| | | private Integer linkType; |
| | | |
| | | @ApiModelProperty("上架时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date onAt; |
| | | |
| | | @ApiModelProperty("下架时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date offAt; |
| | | |
| | | @ApiModelProperty("跳转内容id") |
| | | @ApiModelProperty("跳转内容id 1 随手拍 2 人脸识别 3 政策文件") |
| | | private Long jumpId; |
| | | |
| | | @ApiModelProperty("跳转url地址") |
| | | private String jumpUrl; |
| | | |
| | | @ApiModelProperty("跳转内容") |
| | | private String jumpContent; |
| | | |
| | | @ApiModelProperty("新增时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty("编辑时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date updateAt; |
| | | |
| | | |