package cc.mrbird.febs.mall.entity;
|
|
import cc.mrbird.febs.common.entity.BaseEntity;
|
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 Long styleId;
|
|
private Long goodsId;
|
}
|