6 changed files with 89 additions and 8 deletions
@ -0,0 +1,27 @@ |
|||
package com.bnyer.img.vo; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Getter; |
|||
import lombok.Setter; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
@Getter |
|||
@Setter |
|||
@ApiModel("艺术家粉丝喜欢收藏响应类") |
|||
public class CreatorFansLikeVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="粉丝量") |
|||
private int fansNum; |
|||
|
|||
@ApiModelProperty(value="喜欢量") |
|||
private int likeNum; |
|||
|
|||
@ApiModelProperty(value="收藏量") |
|||
private int collectNum; |
|||
|
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
Loading…
Reference in new issue