!189 优化代码结构

Merge pull request !189 from OceansDeep/feature/pg
This commit is contained in:
OceansDeep 2022-06-10 10:43:28 +00:00 committed by Gitee
commit 24de62f5f4
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 3 additions and 23 deletions

View File

@ -1,19 +0,0 @@
package cn.lili.modules.goods.render;
import cn.lili.modules.goods.entity.dos.GoodsSku;
import java.util.List;
import java.util.Map;
/**
* 商品sku渲染器
*
* @author paulG
* @since 2022/5/20
**/
public interface GoodsSkuRender {
GoodsSku render(List<Map<String, Object>> skuList);
}

View File

@ -215,7 +215,7 @@ public interface GoodsSkuService extends IService<GoodsSku> {
/** /**
* 删除并且新增sku即覆盖之前信息 * 删除并且新增sku即覆盖之前信息
* *
* @param goodsSkus * @param goodsSkus 商品sku集合
* @return * @return
*/ */
boolean deleteAndInsertGoodsSkus(List<GoodsSku> goodsSkus); boolean deleteAndInsertGoodsSkus(List<GoodsSku> goodsSkus);
@ -223,8 +223,8 @@ public interface GoodsSkuService extends IService<GoodsSku> {
/** /**
* 统计sku总数 * 统计sku总数
* *
* @param storeId * @param storeId 店铺id
* @return * @return sku总数
*/ */
Long countSkuNum(String storeId); Long countSkuNum(String storeId);
} }

View File

@ -88,7 +88,6 @@
<imageName>${docker-registry}/${project.artifactId}:${revision}.${images-version}</imageName> <imageName>${docker-registry}/${project.artifactId}:${revision}.${images-version}</imageName>
<baseImage>java</baseImage> <baseImage>java</baseImage>
<entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint> <entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint>
<pushImage>true</pushImage>
<resources> <resources>
<resource> <resource>
<targetPath>/</targetPath> <targetPath>/</targetPath>