From 9c6c57d3a81571e10a6a46446e18175067f4a8df Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期四, 14 八月 2025 14:49:54 +0800 Subject: [PATCH] 视频评论删除 --- framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java b/framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java index f233523..2cda83b 100644 --- a/framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java +++ b/framework/src/main/java/cn/lili/modules/goods/entity/dos/Goods.java @@ -172,6 +172,9 @@ private Date preSaleBeginDate; @ApiModelProperty(value = "鎶芥垚姣斾緥") private BigDecimal commission; + + @ApiModelProperty(value = "鍟嗗搧鎺掑簭") + private Integer goodsSort; public Goods() { } @@ -192,6 +195,7 @@ this.preSaleEndDate = goodsOperationDTO.getPreSaleEndDate(); this.preSaleBeginDate = goodsOperationDTO.getPreSaleBeginDate(); this.commission = goodsOperationDTO.getCommission(); + this.goodsSort = goodsOperationDTO.getGoodsSort(); if (goodsOperationDTO.getGoodsParamsDTOList() != null && goodsOperationDTO.getGoodsParamsDTOList().isEmpty()) { this.params = JSONUtil.toJsonStr(goodsOperationDTO.getGoodsParamsDTOList()); } -- Gitblit v1.8.0