|
@@ -13,6 +13,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
|
|
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
|
|
import lombok.*;
|
|
import lombok.*;
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -63,13 +64,11 @@ public class ProductSpuDO extends BaseDO {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 商品分类编号
|
|
* 商品分类编号
|
|
- *
|
|
|
|
* 关联 {@link ProductCategoryDO#getId()}
|
|
* 关联 {@link ProductCategoryDO#getId()}
|
|
*/
|
|
*/
|
|
private Long categoryId;
|
|
private Long categoryId;
|
|
/**
|
|
/**
|
|
* 商品品牌编号
|
|
* 商品品牌编号
|
|
- *
|
|
|
|
* 关联 {@link ProductBrandDO#getId()}
|
|
* 关联 {@link ProductBrandDO#getId()}
|
|
*/
|
|
*/
|
|
private Long brandId;
|
|
private Long brandId;
|
|
@@ -89,7 +88,6 @@ public class ProductSpuDO extends BaseDO {
|
|
private Integer sort;
|
|
private Integer sort;
|
|
/**
|
|
/**
|
|
* 商品状态
|
|
* 商品状态
|
|
- *
|
|
|
|
* 枚举 {@link ProductSpuStatusEnum}
|
|
* 枚举 {@link ProductSpuStatusEnum}
|
|
*/
|
|
*/
|
|
private Integer status;
|
|
private Integer status;
|
|
@@ -98,32 +96,27 @@ public class ProductSpuDO extends BaseDO {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 规格类型
|
|
* 规格类型
|
|
- *
|
|
|
|
* false - 单规格
|
|
* false - 单规格
|
|
* true - 多规格
|
|
* true - 多规格
|
|
*/
|
|
*/
|
|
private Boolean specType;
|
|
private Boolean specType;
|
|
/**
|
|
/**
|
|
* 商品价格,单位使用:分
|
|
* 商品价格,单位使用:分
|
|
- *
|
|
|
|
* 基于其对应的 {@link ProductSkuDO#getPrice()} sku单价最低的商品的
|
|
* 基于其对应的 {@link ProductSkuDO#getPrice()} sku单价最低的商品的
|
|
*/
|
|
*/
|
|
private Integer price;
|
|
private Integer price;
|
|
/**
|
|
/**
|
|
* 市场价,单位使用:分
|
|
* 市场价,单位使用:分
|
|
- *
|
|
|
|
* 基于其对应的 {@link ProductSkuDO#getMarketPrice()} sku单价最低的商品的
|
|
* 基于其对应的 {@link ProductSkuDO#getMarketPrice()} sku单价最低的商品的
|
|
*/
|
|
*/
|
|
private Integer marketPrice;
|
|
private Integer marketPrice;
|
|
/**
|
|
/**
|
|
* 成本价,单位使用:分
|
|
* 成本价,单位使用:分
|
|
- *
|
|
|
|
* 基于其对应的 {@link ProductSkuDO#getCostPrice()} sku单价最低的商品的
|
|
* 基于其对应的 {@link ProductSkuDO#getCostPrice()} sku单价最低的商品的
|
|
*/
|
|
*/
|
|
private Integer costPrice;
|
|
private Integer costPrice;
|
|
/**
|
|
/**
|
|
* 库存
|
|
* 库存
|
|
- *
|
|
|
|
* 基于其对应的 {@link ProductSkuDO#getStock()} 求和
|
|
* 基于其对应的 {@link ProductSkuDO#getStock()} 求和
|
|
*/
|
|
*/
|
|
private Integer stock;
|
|
private Integer stock;
|
|
@@ -132,14 +125,12 @@ public class ProductSpuDO extends BaseDO {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 配送方式数组
|
|
* 配送方式数组
|
|
- *
|
|
|
|
* 对应 DeliveryTypeEnum 枚举
|
|
* 对应 DeliveryTypeEnum 枚举
|
|
*/
|
|
*/
|
|
@TableField(typeHandler = IntegerListTypeHandler.class)
|
|
@TableField(typeHandler = IntegerListTypeHandler.class)
|
|
private List<Integer> deliveryTypes;
|
|
private List<Integer> deliveryTypes;
|
|
/**
|
|
/**
|
|
* 物流配置模板编号
|
|
* 物流配置模板编号
|
|
- *
|
|
|
|
* 对应 TradeDeliveryExpressTemplateDO 的 id 编号
|
|
* 对应 TradeDeliveryExpressTemplateDO 的 id 编号
|
|
*/
|
|
*/
|
|
private Long deliveryTemplateId;
|
|
private Long deliveryTemplateId;
|
|
@@ -154,7 +145,6 @@ public class ProductSpuDO extends BaseDO {
|
|
// TODO @puhui999:字段估计要改成 brokerageType
|
|
// TODO @puhui999:字段估计要改成 brokerageType
|
|
/**
|
|
/**
|
|
* 分销类型
|
|
* 分销类型
|
|
- *
|
|
|
|
* false - 默认
|
|
* false - 默认
|
|
* true - 自行设置
|
|
* true - 自行设置
|
|
*/
|
|
*/
|
|
@@ -197,4 +187,13 @@ public class ProductSpuDO extends BaseDO {
|
|
*/
|
|
*/
|
|
private Integer spuPayType;
|
|
private Integer spuPayType;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 高精度
|
|
|
|
+ */
|
|
|
|
+ private Boolean highPrecision;
|
|
|
|
+ /**
|
|
|
|
+ * 高精度价格
|
|
|
|
+ */
|
|
|
|
+ private BigDecimal highPrecisionPrice;
|
|
|
|
+
|
|
}
|
|
}
|