xiaoyong931011
2021-12-08 f5e6133809c553cfd9fb28ee61019927c547c374
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.fish.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AwardVo", description = "")
public class AwardVo {
 
    @ApiModelProperty(value = "奖品名称")
    private String name;
 
    @ApiModelProperty(value = "奖品图片")
    private String image;
 
    @ApiModelProperty(value = "奖品数量")
    private Integer quantity;
 
}