8 changed files with 181 additions and 21 deletions
@ -0,0 +1,23 @@ |
|||
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 CreatorTypeImgBackVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="手机壁纸数量") |
|||
private Integer backNum; |
|||
|
|||
@ApiModelProperty(value="分类Id") |
|||
private Long typeId; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
@ -0,0 +1,23 @@ |
|||
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 CreatorTypeImgEmoVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="表情包数量") |
|||
private Integer emoNum; |
|||
|
|||
@ApiModelProperty(value="分类Id") |
|||
private Long typeId; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
@ -0,0 +1,23 @@ |
|||
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 CreatorTypeImgFriendVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="朋友圈背景数量") |
|||
private Integer friendNum; |
|||
|
|||
@ApiModelProperty(value="分类Id") |
|||
private Long typeId; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
@ -0,0 +1,23 @@ |
|||
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("艺术家分类图片Gif数量响应体") |
|||
public class CreatorTypeImgGifVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="gif动图数量") |
|||
private Integer gifNum; |
|||
|
|||
@ApiModelProperty(value="分类Id") |
|||
private Long typeId; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
@ -0,0 +1,23 @@ |
|||
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 CreatorTypeImgHeadVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="头像数量") |
|||
private Integer headNum; |
|||
|
|||
@ApiModelProperty(value="分类Id") |
|||
private Long typeId; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
@ -0,0 +1,23 @@ |
|||
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("艺术家分类图片iwatch数量响应体") |
|||
public class CreatorTypeImgWatchVo implements Serializable { |
|||
|
|||
@ApiModelProperty(value="iwatch数量") |
|||
private Integer watchNum; |
|||
|
|||
@ApiModelProperty(value="分类Id") |
|||
private Long typeId; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
} |
|||
Loading…
Reference in new issue