BUG
jiangqs
2023-04-24 aa2eae024f8f251c8e2b9eace5351dea7e315ed7
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.hrt.system.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author jqs34
 * @ClassName AppGoodsInfoVo
 * @description: TODO
 * @date 2023年04月20日
 * @version: 1.0
 */
@Data
public class AppGoodsInfoVo {
 
    @ApiModelProperty(value = "商品id")
    private Long goodsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "商品简介")
    private String goodsIntroduction;
 
    @ApiModelProperty(value = "商品视频")
    private String goodsVideo;
 
    @ApiModelProperty(value = "商品banner")
    private String goodsBanners;
 
    @ApiModelProperty(value = "商品类型1周期2服务3体验4单品")
    private Integer goodsType;
 
    @ApiModelProperty(value = "商品标签")
    private String goodsTag;
 
    @ApiModelProperty(value = "商品调理问题")
    private BigDecimal goodsNurses;
 
    @ApiModelProperty("服务次数")
    private Integer serviceNum;
 
    @ApiModelProperty(value = "商品售价")
    private BigDecimal salesPrice;
 
    @ApiModelProperty(value = "商品详情")
    private String goodsDetail;
 
    @ApiModelProperty(value = "销售数量")
    private Integer salesNum;
 
    @ApiModelProperty(value = "是否活动跳转0否1是")
    private Integer activityFlag;
 
    @ApiModelProperty(value = "商品活动价")
    private BigDecimal activityPrice;
 
    @ApiModelProperty(value = "售罄标记0否1是")
    private Integer sellOutFlag;
 
    @ApiModelProperty(value = "活动截止时间")
    private Date activityDeadline;
}