Helius
2022-05-07 8d41b14c0c71f3d68a5c35ded5081e96bb148056
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
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;
 
/**
 * @author wzy
 * @date 2021-09-17
 **/
@Data
@TableName("mall_goods_sku")
public class MallGoodsSku extends BaseEntity {
 
    private String skuName;
 
    private String skuImage;
 
    private Integer stock;
 
    private Integer skuVolume;
 
    private BigDecimal originalPrice;
 
    private BigDecimal presentPrice;
 
    private BigDecimal costPrice;
 
    private Long styleId;
 
    private Long goodsId;
 
    @TableField(exist = false)
    private String goodsName;
 
    @TableField(exist = false)
    private String styleName;
}