mitao
2025-01-17 afa0dbb4f54e7244835dd67ec33c3e545f122f71
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
package com.ruoyi.order.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author jqs34
 * @ClassName MerGoodsPageVo
 * @description: TODO
 * @date 2023年05月04日
 * @version: 1.0
 */
@Data
public class MerGoodsPageVo {
 
    @ApiModelProperty(value = "商品id")
    private String goodsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "商品简介")
    private String goodsIntroduction;
 
    @ApiModelProperty(value = "商品标签")
    private String goodsTag;
 
    @ApiModelProperty(value = "商品图片")
    private String goodsPicture;
 
    @ApiModelProperty(value = "商品类型1周期2服务3体验4单品")
    private Integer goodsType;
 
    @ApiModelProperty(value = "商品调理问题")
    private String goodsNurses;
 
    @ApiModelProperty(value = "商品建议售价")
 
    private BigDecimal suggestSalesPrice;;
 
    @ApiModelProperty(value = "商品售价")
    
    private BigDecimal salesPrice;;
 
    @ApiModelProperty(value="周期次数标记0否1是")
    private Integer cycleNumFlag;
 
    @ApiModelProperty(value = "商品默认服务次数")
    private Integer defaultServiceNum;;
 
    @ApiModelProperty(value = "服务次数")
    private Integer serviceNum;;
}