diff --git a/framework/src/main/java/cn/lili/modules/goods/mapper/SpecificationMapper.java b/framework/src/main/java/cn/lili/modules/goods/mapper/SpecificationMapper.java index 71ec8289e..5af49de01 100644 --- a/framework/src/main/java/cn/lili/modules/goods/mapper/SpecificationMapper.java +++ b/framework/src/main/java/cn/lili/modules/goods/mapper/SpecificationMapper.java @@ -3,10 +3,13 @@ package cn.lili.modules.goods.mapper; import cn.lili.modules.goods.entity.dos.Specification; import cn.lili.modules.goods.entity.vos.SpecificationVO; +import com.baomidou.mybatisplus.core.conditions.Wrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.toolkit.Constants; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Select; import java.util.List; -import java.util.Map; /** * 规格数据处理层 @@ -18,8 +21,9 @@ public interface SpecificationMapper extends BaseMapper { /** * 查询规格信息列表 - * @param param * @return */ - List findSpecList(Map param); + @Select("SELECT s.id, s.spec_name,s.create_time ,GROUP_CONCAT(sv.spec_value SEPARATOR ',') AS spec_value" + + " FROM li_specification s LEFT JOIN li_spec_values sv ON s.id = sv.spec_id ${ew.customSqlSegment} ") + List findSpecList(@Param(Constants.WRAPPER) Wrapper queryWrapper); } \ No newline at end of file diff --git a/framework/src/main/java/cn/lili/modules/goods/service/SpecificationService.java b/framework/src/main/java/cn/lili/modules/goods/service/SpecificationService.java index 2d86c38cb..53f3e1205 100644 --- a/framework/src/main/java/cn/lili/modules/goods/service/SpecificationService.java +++ b/framework/src/main/java/cn/lili/modules/goods/service/SpecificationService.java @@ -10,7 +10,6 @@ import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; -import java.util.Map; /** * 规格业务层 @@ -23,10 +22,10 @@ public interface SpecificationService extends IService { /** * 查询规格信息列表 * - * @param param 查询参数 + * @param specName 规格名 * @return 规格列表 */ - List getSpecList(Map param); + List getSpecList(String specName); /** * 根据分类id获取规格信息 diff --git a/framework/src/main/java/cn/lili/modules/goods/serviceimpl/SpecificationServiceImpl.java b/framework/src/main/java/cn/lili/modules/goods/serviceimpl/SpecificationServiceImpl.java index 90d763262..a74aa5dff 100644 --- a/framework/src/main/java/cn/lili/modules/goods/serviceimpl/SpecificationServiceImpl.java +++ b/framework/src/main/java/cn/lili/modules/goods/serviceimpl/SpecificationServiceImpl.java @@ -5,6 +5,7 @@ import cn.hutool.core.util.StrUtil; import cn.lili.common.enums.ResultCode; import cn.lili.common.exception.ServiceException; import cn.lili.common.utils.PageUtil; +import cn.lili.common.utils.StringUtils; import cn.lili.common.vo.PageVO; import cn.lili.modules.goods.entity.dos.CategorySpecification; import cn.lili.modules.goods.entity.dos.SpecValues; @@ -49,8 +50,13 @@ public class SpecificationServiceImpl extends ServiceImpl getSpecList(Map param) { - return this.baseMapper.findSpecList(param); + public List getSpecList(String specName) { + + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq(StringUtils.isNotEmpty(specName), "s.spec_name", specName); + queryWrapper.orderByDesc("s.create_time"); + queryWrapper.groupBy("s.id"); + return this.baseMapper.findSpecList(queryWrapper); } @Override @@ -96,9 +102,8 @@ public class SpecificationServiceImpl extends ServiceImpl getSpecificationPage(SpecificationSearchParams searchParams, PageVO pageVo) { - Map param = new HashMap<>(); - param.put("specName", searchParams.getSpecName()); - List specList = this.getSpecList(param); + + List specList = this.getSpecList(searchParams.getSpecName()); IPage page = new Page<>(pageVo.getPageNumber(), pageVo.getPageSize(), specList.size()); page.setRecords(PageUtil.listToPage(pageVo, specList)); return page; diff --git a/framework/src/main/resources/mapper/ArticleCategoryMapper.xml b/framework/src/main/resources/mapper/ArticleCategoryMapper.xml deleted file mode 100644 index ce5612b99..000000000 --- a/framework/src/main/resources/mapper/ArticleCategoryMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ArticleMapper.xml b/framework/src/main/resources/mapper/ArticleMapper.xml deleted file mode 100644 index e005dc3fb..000000000 --- a/framework/src/main/resources/mapper/ArticleMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/BillMapper.xml b/framework/src/main/resources/mapper/BillMapper.xml deleted file mode 100644 index 97b15e6e2..000000000 --- a/framework/src/main/resources/mapper/BillMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/BrandMapper.xml b/framework/src/main/resources/mapper/BrandMapper.xml deleted file mode 100644 index fc5ee370f..000000000 --- a/framework/src/main/resources/mapper/BrandMapper.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/CategoryBrandMapper.xml b/framework/src/main/resources/mapper/CategoryBrandMapper.xml deleted file mode 100644 index b4edf6f7b..000000000 --- a/framework/src/main/resources/mapper/CategoryBrandMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/CategoryParameterGroupMapper.xml b/framework/src/main/resources/mapper/CategoryParameterGroupMapper.xml deleted file mode 100644 index eb629109b..000000000 --- a/framework/src/main/resources/mapper/CategoryParameterGroupMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/CategorySpecificationMapper.xml b/framework/src/main/resources/mapper/CategorySpecificationMapper.xml deleted file mode 100644 index f622e1a57..000000000 --- a/framework/src/main/resources/mapper/CategorySpecificationMapper.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ConnectConfigMapper.xml b/framework/src/main/resources/mapper/ConnectConfigMapper.xml deleted file mode 100644 index dbd74bbf4..000000000 --- a/framework/src/main/resources/mapper/ConnectConfigMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ConnectMapper.xml b/framework/src/main/resources/mapper/ConnectMapper.xml deleted file mode 100644 index 7b72b2cdf..000000000 --- a/framework/src/main/resources/mapper/ConnectMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/CouponMapper.xml b/framework/src/main/resources/mapper/CouponMapper.xml deleted file mode 100644 index 9b18097fe..000000000 --- a/framework/src/main/resources/mapper/CouponMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/DepartmentMapper.xml b/framework/src/main/resources/mapper/DepartmentMapper.xml deleted file mode 100644 index 20af930ad..000000000 --- a/framework/src/main/resources/mapper/DepartmentMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/DepartmentRoleMapper.xml b/framework/src/main/resources/mapper/DepartmentRoleMapper.xml deleted file mode 100644 index 4241a205b..000000000 --- a/framework/src/main/resources/mapper/DepartmentRoleMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/DepositLogMapper.xml b/framework/src/main/resources/mapper/DepositLogMapper.xml deleted file mode 100644 index 470c65ebc..000000000 --- a/framework/src/main/resources/mapper/DepositLogMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/DistributionCashMapper.xml b/framework/src/main/resources/mapper/DistributionCashMapper.xml deleted file mode 100644 index 5998314d9..000000000 --- a/framework/src/main/resources/mapper/DistributionCashMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/DistributionGoodsMapper.xml b/framework/src/main/resources/mapper/DistributionGoodsMapper.xml deleted file mode 100644 index 199f46da5..000000000 --- a/framework/src/main/resources/mapper/DistributionGoodsMapper.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/DistributionOrderMapper.xml b/framework/src/main/resources/mapper/DistributionOrderMapper.xml deleted file mode 100644 index deb20d73c..000000000 --- a/framework/src/main/resources/mapper/DistributionOrderMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ExpressPlatformMapper.xml b/framework/src/main/resources/mapper/ExpressPlatformMapper.xml deleted file mode 100644 index 4dbc5f389..000000000 --- a/framework/src/main/resources/mapper/ExpressPlatformMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/FocusPictureMapper.xml b/framework/src/main/resources/mapper/FocusPictureMapper.xml deleted file mode 100644 index 07c95c925..000000000 --- a/framework/src/main/resources/mapper/FocusPictureMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/FootprintMapper.xml b/framework/src/main/resources/mapper/FootprintMapper.xml deleted file mode 100644 index 9be92429c..000000000 --- a/framework/src/main/resources/mapper/FootprintMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/FullDiscountMapper.xml b/framework/src/main/resources/mapper/FullDiscountMapper.xml deleted file mode 100644 index d62e32ce2..000000000 --- a/framework/src/main/resources/mapper/FullDiscountMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/GoodsCollectionMapper.xml b/framework/src/main/resources/mapper/GoodsCollectionMapper.xml deleted file mode 100644 index 4ff9b1f1e..000000000 --- a/framework/src/main/resources/mapper/GoodsCollectionMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/GoodsGalleryMapper.xml b/framework/src/main/resources/mapper/GoodsGalleryMapper.xml deleted file mode 100644 index 882df2607..000000000 --- a/framework/src/main/resources/mapper/GoodsGalleryMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/GoodsMapper.xml b/framework/src/main/resources/mapper/GoodsMapper.xml deleted file mode 100644 index 864362a0f..000000000 --- a/framework/src/main/resources/mapper/GoodsMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/GoodsParamsMapper.xml b/framework/src/main/resources/mapper/GoodsParamsMapper.xml deleted file mode 100644 index 9472dc417..000000000 --- a/framework/src/main/resources/mapper/GoodsParamsMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/GoodsSkuMapper.xml b/framework/src/main/resources/mapper/GoodsSkuMapper.xml deleted file mode 100644 index 4ca8bb3fa..000000000 --- a/framework/src/main/resources/mapper/GoodsSkuMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/GoodsUnitMapper.xml b/framework/src/main/resources/mapper/GoodsUnitMapper.xml deleted file mode 100644 index 516ea99e1..000000000 --- a/framework/src/main/resources/mapper/GoodsUnitMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/LogisticsMapper.xml b/framework/src/main/resources/mapper/LogisticsMapper.xml deleted file mode 100644 index 48045bad4..000000000 --- a/framework/src/main/resources/mapper/LogisticsMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberAddressMapper.xml b/framework/src/main/resources/mapper/MemberAddressMapper.xml deleted file mode 100644 index 12579d102..000000000 --- a/framework/src/main/resources/mapper/MemberAddressMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberCouponMapper.xml b/framework/src/main/resources/mapper/MemberCouponMapper.xml deleted file mode 100644 index d1a02fce9..000000000 --- a/framework/src/main/resources/mapper/MemberCouponMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberEvaluationMapper.xml b/framework/src/main/resources/mapper/MemberEvaluationMapper.xml deleted file mode 100644 index 26a0befbd..000000000 --- a/framework/src/main/resources/mapper/MemberEvaluationMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberMapper.xml b/framework/src/main/resources/mapper/MemberMapper.xml deleted file mode 100644 index 6dcff5017..000000000 --- a/framework/src/main/resources/mapper/MemberMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberNoticeLogMapper.xml b/framework/src/main/resources/mapper/MemberNoticeLogMapper.xml deleted file mode 100644 index 5ded7a700..000000000 --- a/framework/src/main/resources/mapper/MemberNoticeLogMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberNoticeMapper.xml b/framework/src/main/resources/mapper/MemberNoticeMapper.xml deleted file mode 100644 index f418e98c3..000000000 --- a/framework/src/main/resources/mapper/MemberNoticeMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberNoticeSenterMapper.xml b/framework/src/main/resources/mapper/MemberNoticeSenterMapper.xml deleted file mode 100644 index caf65eb84..000000000 --- a/framework/src/main/resources/mapper/MemberNoticeSenterMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberPointsHistoryMapper.xml b/framework/src/main/resources/mapper/MemberPointsHistoryMapper.xml deleted file mode 100644 index 1f72c95d0..000000000 --- a/framework/src/main/resources/mapper/MemberPointsHistoryMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberSign.xml b/framework/src/main/resources/mapper/MemberSign.xml deleted file mode 100644 index 7a69fe9f2..000000000 --- a/framework/src/main/resources/mapper/MemberSign.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberStatisticsDataMapper.xml b/framework/src/main/resources/mapper/MemberStatisticsDataMapper.xml deleted file mode 100644 index 343ba5fe7..000000000 --- a/framework/src/main/resources/mapper/MemberStatisticsDataMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MemberWalletMapper.xml b/framework/src/main/resources/mapper/MemberWalletMapper.xml deleted file mode 100644 index cad94a666..000000000 --- a/framework/src/main/resources/mapper/MemberWalletMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/MessageMapper.xml b/framework/src/main/resources/mapper/MessageMapper.xml deleted file mode 100644 index 6f02e5182..000000000 --- a/framework/src/main/resources/mapper/MessageMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/OrderItemMapper.xml b/framework/src/main/resources/mapper/OrderItemMapper.xml deleted file mode 100644 index 400326626..000000000 --- a/framework/src/main/resources/mapper/OrderItemMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/OrderLogMapper.xml b/framework/src/main/resources/mapper/OrderLogMapper.xml deleted file mode 100644 index 7b87b5039..000000000 --- a/framework/src/main/resources/mapper/OrderLogMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/OrderMapper.xml b/framework/src/main/resources/mapper/OrderMapper.xml deleted file mode 100644 index a41b6c947..000000000 --- a/framework/src/main/resources/mapper/OrderMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PageMapper.xml b/framework/src/main/resources/mapper/PageMapper.xml deleted file mode 100644 index 180dec09f..000000000 --- a/framework/src/main/resources/mapper/PageMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ParametersMapper.xml b/framework/src/main/resources/mapper/ParametersMapper.xml deleted file mode 100644 index 88e60be1a..000000000 --- a/framework/src/main/resources/mapper/ParametersMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PaymentLogMapper.xml b/framework/src/main/resources/mapper/PaymentLogMapper.xml deleted file mode 100644 index 1af3e7788..000000000 --- a/framework/src/main/resources/mapper/PaymentLogMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PermissionMapper.xml b/framework/src/main/resources/mapper/PermissionMapper.xml deleted file mode 100644 index 1a7ba370f..000000000 --- a/framework/src/main/resources/mapper/PermissionMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PintuanMapper.xml b/framework/src/main/resources/mapper/PintuanMapper.xml deleted file mode 100644 index c7f2ad03c..000000000 --- a/framework/src/main/resources/mapper/PintuanMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PlatformSettingMapper.xml b/framework/src/main/resources/mapper/PlatformSettingMapper.xml deleted file mode 100644 index 093d23185..000000000 --- a/framework/src/main/resources/mapper/PlatformSettingMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PointLogMapper.xml b/framework/src/main/resources/mapper/PointLogMapper.xml deleted file mode 100644 index 4c1f16115..000000000 --- a/framework/src/main/resources/mapper/PointLogMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PromotionGoodsMapper.xml b/framework/src/main/resources/mapper/PromotionGoodsMapper.xml deleted file mode 100644 index 6f9e25eae..000000000 --- a/framework/src/main/resources/mapper/PromotionGoodsMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PurchaseOrderItemMapper.xml b/framework/src/main/resources/mapper/PurchaseOrderItemMapper.xml deleted file mode 100644 index 819b75e4f..000000000 --- a/framework/src/main/resources/mapper/PurchaseOrderItemMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PurchaseOrderMapper.xml b/framework/src/main/resources/mapper/PurchaseOrderMapper.xml deleted file mode 100644 index cd72f34b3..000000000 --- a/framework/src/main/resources/mapper/PurchaseOrderMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PurchaseQuotedItemMapper.xml b/framework/src/main/resources/mapper/PurchaseQuotedItemMapper.xml deleted file mode 100644 index bf83a6373..000000000 --- a/framework/src/main/resources/mapper/PurchaseQuotedItemMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/PurchaseQuotedMapper.xml b/framework/src/main/resources/mapper/PurchaseQuotedMapper.xml deleted file mode 100644 index 7572cead7..000000000 --- a/framework/src/main/resources/mapper/PurchaseQuotedMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ReceiptMapper.xml b/framework/src/main/resources/mapper/ReceiptMapper.xml deleted file mode 100644 index 559fe312e..000000000 --- a/framework/src/main/resources/mapper/ReceiptMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/RechargeMapper.xml b/framework/src/main/resources/mapper/RechargeMapper.xml deleted file mode 100644 index a393e9f8e..000000000 --- a/framework/src/main/resources/mapper/RechargeMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/RefundLogMapper.xml b/framework/src/main/resources/mapper/RefundLogMapper.xml deleted file mode 100644 index d5fed122f..000000000 --- a/framework/src/main/resources/mapper/RefundLogMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/RegionMapper.xml b/framework/src/main/resources/mapper/RegionMapper.xml deleted file mode 100644 index fe38f09b3..000000000 --- a/framework/src/main/resources/mapper/RegionMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/RoleMapper.xml b/framework/src/main/resources/mapper/RoleMapper.xml deleted file mode 100644 index 2731ffa37..000000000 --- a/framework/src/main/resources/mapper/RoleMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/RoleMenuMapper.xml b/framework/src/main/resources/mapper/RoleMenuMapper.xml deleted file mode 100644 index 586913d5a..000000000 --- a/framework/src/main/resources/mapper/RoleMenuMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/SeckillApplyMapper.xml b/framework/src/main/resources/mapper/SeckillApplyMapper.xml deleted file mode 100644 index c6a1c7f1f..000000000 --- a/framework/src/main/resources/mapper/SeckillApplyMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/SeckillMapper.xml b/framework/src/main/resources/mapper/SeckillMapper.xml deleted file mode 100644 index 467d68ae3..000000000 --- a/framework/src/main/resources/mapper/SeckillMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/SensitiveWordsMapper.xml b/framework/src/main/resources/mapper/SensitiveWordsMapper.xml deleted file mode 100644 index 6ce6ff07b..000000000 --- a/framework/src/main/resources/mapper/SensitiveWordsMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ServiceNoticeMapper.xml b/framework/src/main/resources/mapper/ServiceNoticeMapper.xml deleted file mode 100644 index 50eff6901..000000000 --- a/framework/src/main/resources/mapper/ServiceNoticeMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ShippingAddressMapper.xml b/framework/src/main/resources/mapper/ShippingAddressMapper.xml deleted file mode 100644 index 8b80fce01..000000000 --- a/framework/src/main/resources/mapper/ShippingAddressMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/ShortLinkMapper.xml b/framework/src/main/resources/mapper/ShortLinkMapper.xml deleted file mode 100644 index 7c6e4c6a0..000000000 --- a/framework/src/main/resources/mapper/ShortLinkMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/SiteNavigationMapper.xml b/framework/src/main/resources/mapper/SiteNavigationMapper.xml deleted file mode 100644 index d91ffe981..000000000 --- a/framework/src/main/resources/mapper/SiteNavigationMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/SpecValuesMapper.xml b/framework/src/main/resources/mapper/SpecValuesMapper.xml deleted file mode 100644 index bd9c7a259..000000000 --- a/framework/src/main/resources/mapper/SpecValuesMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/SpecificationMapper.xml b/framework/src/main/resources/mapper/SpecificationMapper.xml deleted file mode 100644 index e7b1d8b20..000000000 --- a/framework/src/main/resources/mapper/SpecificationMapper.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/StoreAddressMapper.xml b/framework/src/main/resources/mapper/StoreAddressMapper.xml deleted file mode 100644 index 73d8604ab..000000000 --- a/framework/src/main/resources/mapper/StoreAddressMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/StoreCollectionMapper.xml b/framework/src/main/resources/mapper/StoreCollectionMapper.xml deleted file mode 100644 index 0c8a40b6d..000000000 --- a/framework/src/main/resources/mapper/StoreCollectionMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/StoreFlowMapper.xml b/framework/src/main/resources/mapper/StoreFlowMapper.xml deleted file mode 100644 index 4d526cbaa..000000000 --- a/framework/src/main/resources/mapper/StoreFlowMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/StoreLogisticsMapper.xml b/framework/src/main/resources/mapper/StoreLogisticsMapper.xml deleted file mode 100644 index 9df71ce26..000000000 --- a/framework/src/main/resources/mapper/StoreLogisticsMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/StoreMapper.xml b/framework/src/main/resources/mapper/StoreMapper.xml deleted file mode 100644 index a1be516a1..000000000 --- a/framework/src/main/resources/mapper/StoreMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/TradeMapper.xml b/framework/src/main/resources/mapper/TradeMapper.xml deleted file mode 100644 index be1e03c32..000000000 --- a/framework/src/main/resources/mapper/TradeMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/UserRoleMapper.xml b/framework/src/main/resources/mapper/UserRoleMapper.xml deleted file mode 100644 index 0c6da8264..000000000 --- a/framework/src/main/resources/mapper/UserRoleMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/VerificationSourceMapper.xml b/framework/src/main/resources/mapper/VerificationSourceMapper.xml deleted file mode 100644 index c80edca59..000000000 --- a/framework/src/main/resources/mapper/VerificationSourceMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/WechatMPMessageMapper.xml b/framework/src/main/resources/mapper/WechatMPMessageMapper.xml deleted file mode 100644 index 9d639de1c..000000000 --- a/framework/src/main/resources/mapper/WechatMPMessageMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/framework/src/main/resources/mapper/WechatMessageMapper.xml b/framework/src/main/resources/mapper/WechatMessageMapper.xml deleted file mode 100644 index ed6244e78..000000000 --- a/framework/src/main/resources/mapper/WechatMessageMapper.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file