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;
|
|
}
|