From 27b1088d4171ee368c105ff401e71dc7900dc698 Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Thu, 22 May 2025 10:13:49 +0800 Subject: [PATCH] refactor(common): 优化 ScoreFlowTypeEnum 中的描述信息 --- src/main/java/cc/mrbird/febs/mall/entity/MallGoodsSku.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/entity/MallGoodsSku.java b/src/main/java/cc/mrbird/febs/mall/entity/MallGoodsSku.java index 9d52895..fcd4376 100644 --- a/src/main/java/cc/mrbird/febs/mall/entity/MallGoodsSku.java +++ b/src/main/java/cc/mrbird/febs/mall/entity/MallGoodsSku.java @@ -1,6 +1,7 @@ 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; @@ -23,10 +24,31 @@ private Integer skuVolume; private BigDecimal originalPrice; + private BigDecimal levelOnePrice; + private BigDecimal levelTwoPrice; + private BigDecimal levelThreePrice; private BigDecimal presentPrice; + + private BigDecimal costPrice; private Long styleId; private Long goodsId; + + @TableField(exist = false) + private String goodsName; + + @TableField(exist = false) + private String styleName; + //重量 + private BigDecimal goodsWeight; + + @TableField(exist = false) + private BigDecimal skuGoodsWeight; + + @TableField(exist = false) + private String staticPropPrice; + + private String sample; } -- Gitblit v1.9.1