Administrator
2025-07-21 7426bcd6a56755f5a45401b2eb4e72bdc0fe9bc4
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;
 
}