fix
Helius
2022-04-28 1bf57dbbb7025facb8a3e3c2074e82af6f13b24f
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
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author wzy
 * @date 2021-09-17
 **/
@Data
@TableName("mall_goods")
public class MallGoods extends BaseEntity {
 
    private String goodsNo;
 
    private String goodsName;
 
    private String goodsIntrodution;
 
    private String unit;
 
    private String thumb;
 
    private String goodsDetails;
 
    private Integer isSale;
 
    /**
     * 上架
     */
    public static final Integer ISSALE_STATUS_ENABLE = 1;
    /**
     * 下架
     */
    public static final Integer ISSALE_STATUS_DISABLED = 2;
 
    private String originalPrice;
 
    private String presentPrice;
 
    private Long categoryId;
 
    private Integer isHot;
 
    private BigDecimal staticMultiple;
 
    private Integer isNormal;
 
    @TableField(exist = false)
    private List<MallGoodsStyle> styles;
 
    @TableField(exist = false)
    private List<String> images;
}