1
zhujie
5 天以前 ec15861e14c66c38b1a8f5fffc6975d7da6c315c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.mzl.flower.dto.request.point;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class PointGoodsCreateDTO {
    @ApiModelProperty(value = "商品名称")
    private String name;
 
    @ApiModelProperty(value = "商品描述")
    private String description;
 
    @ApiModelProperty(value = "库存")
    private Integer stock;
 
    @ApiModelProperty(value = "封面图")
    private String cover;
 
    @ApiModelProperty(value = "商品图片")
    private List<String> pictureList;
 
    @ApiModelProperty(value = "兑换积分")
    private Integer point;
 
}