package com.matrix.system.score.entity; import com.matrix.core.anotations.Extend; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; /** * @description 商品规格表 * @author yourName * @date 2021-02-26 15:26 */ @Data @TableName("score_goods_sku") public class ScoreGoodsSku extends BaseEntity{ @Extend private static final long serialVersionUID = 1L; /** * 名称 */ private String skuName; /** * 图片 */ private Long imgPath; /** * 抵扣所需积分 */ private Integer scorePrice; /** * 库存 */ private Integer reserve; /** * 排序 */ private Integer skuSort; /** * 商品ID */ private Long goodsId; /** * 关联ERP产品code */ private String skuErpCode; /** * 所属公司_id */ private Long companyId; }