1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.stylefeng.guns.modular.system.dto;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| public class BannerVo {
| @ApiModelProperty("id")
| Integer id;
| @ApiModelProperty("排序")
| Integer sort;
| @ApiModelProperty("图片")
| String imgUrl;
| @ApiModelProperty("创建人")
| String createBy;
| @ApiModelProperty("创建时间")
| Date insertTime;
| @ApiModelProperty("(1=首页,(6租房、7买房、8公司盘、9求房源)")
| Integer position;
| }
|
|