Administrator
2 days ago 1506f16162c71e8852e62ecbe2d0888548a37800
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cc.mrbird.febs.yinhe.res;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "YHBannerVo", description = "参数")
public class YHBannerVo {
 
    @ApiModelProperty(value = "名称*", example = "1")
    private String name;
    @ApiModelProperty(value = "图片链接*", example = "1")
    private String imageUrl;
    @ApiModelProperty(value = "排序*", example = "1")
    private Integer sort;
}