Commit 8d9ee146 authored by unset's avatar unset

影像图库新增批量上下架以及删除接口

parent 2b5e79f8
...@@ -48,11 +48,9 @@ public class ShoppingCartInfoBiz extends BaseBiz<ShoppingCartInfoMapper, Shoppin ...@@ -48,11 +48,9 @@ public class ShoppingCartInfoBiz extends BaseBiz<ShoppingCartInfoMapper, Shoppin
@Autowired @Autowired
OrderItemBiz orderItemBiz; OrderItemBiz orderItemBiz;
@Autowired private final IndustryApplicationInfoBiz industryApplicationInfoBiz;
IndustryApplicationInfoBiz industryApplicationInfoBiz;
@Autowired private final ImageImgStorageBiz imageImgStorageBiz;
ImageImgStorageBiz imageImgStorageBiz;
@Autowired @Autowired
UserFeign userFeign; UserFeign userFeign;
...@@ -69,6 +67,11 @@ public class ShoppingCartInfoBiz extends BaseBiz<ShoppingCartInfoMapper, Shoppin ...@@ -69,6 +67,11 @@ public class ShoppingCartInfoBiz extends BaseBiz<ShoppingCartInfoMapper, Shoppin
@Autowired @Autowired
ImageInfoRelationBiz imageInfoRelationBiz; ImageInfoRelationBiz imageInfoRelationBiz;
public ShoppingCartInfoBiz (IndustryApplicationInfoBiz industryApplicationInfoBiz, ImageImgStorageBiz imageImgStorageBiz) {
this.industryApplicationInfoBiz = industryApplicationInfoBiz;
this.imageImgStorageBiz = imageImgStorageBiz;
}
/** /**
* 添加购物车 * 添加购物车
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment