huliguo
2025-06-02 5952d2383571c3fcd96dc0eaad5347b21fce415d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.pojo.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("banner分页VO")
public class BannerPageVO {
    @ApiModelProperty("主键ID")
    private Integer id;
    @ApiModelProperty("Banner名称")
    private String name;
 
}