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