Administrator
2 days ago 9b3f0e0c496871e9bc633bafe2512cace82dd5e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.mall.vo.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiAllSocialVo", description = "参数")
public class ApiAllSocialVo {
 
    @ApiModelProperty(value = "id")
    private Long id;
    @ApiModelProperty(value = "用户")
    private String memberName;
    @ApiModelProperty(value = "头像")
    private String memberAvatar;
    @ApiModelProperty(value = "标题")
    private String name;
    @ApiModelProperty(value = "封面")
    private String indexFile;
    @ApiModelProperty(value = "点赞数量")
    private Integer likeCnt;
 
}