|
@@ -0,0 +1,43 @@
|
|
|
+package org.dromara.bulk.service.impl;
|
|
|
+
|
|
|
+import lombok.RequiredArgsConstructor;
|
|
|
+import org.dromara.bulk.domain.bo.GoodsBo;
|
|
|
+import org.dromara.bulk.domain.vo.GoodsVo;
|
|
|
+import org.dromara.bulk.mapper.GoodsMapper;
|
|
|
+import org.dromara.bulk.service.GoodsService;
|
|
|
+import org.dromara.common.mybatis.core.page.PageQuery;
|
|
|
+import org.dromara.common.mybatis.core.page.TableDataInfo;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+@Service
|
|
|
+@RequiredArgsConstructor
|
|
|
+public class GoodsServiceImpl implements GoodsService {
|
|
|
+
|
|
|
+ private final GoodsMapper goodsMapper;
|
|
|
+ @Override
|
|
|
+ public TableDataInfo<GoodsVo> selectPageGoodsList(GoodsBo goodsBo, PageQuery pageQuery) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int insertGoods(GoodsBo goodsBo) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int updateGoods(GoodsBo goodsBo) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int deleteGoodsById(Long[] goodsIds) {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<GoodsVo> selectGoodsList() {
|
|
|
+ return goodsMapper.selectVoList();
|
|
|
+ }
|
|
|
+}
|