This commit is contained in:
wangjinlei
2023-09-21 10:05:26 +08:00
parent 1b3d3358a8
commit 30d8045759
6 changed files with 44 additions and 5 deletions

View File

@@ -1,6 +1,8 @@
package com.peanut.modules.book.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.book.entity.ShopProductLabelEntity;
import com.peanut.modules.book.entity.ShopProductToLabelEntity;
import org.apache.ibatis.annotations.Mapper;

View File

@@ -1,6 +1,7 @@
package com.peanut.modules.book.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.yulichang.base.MPJBaseService;
import com.peanut.modules.book.entity.ShopProductToLabelEntity;
public interface ShopProductToLabelService extends IService<ShopProductToLabelEntity> {

View File

@@ -1,6 +1,7 @@
package com.peanut.modules.book.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.yulichang.base.MPJBaseServiceImpl;
import com.peanut.modules.book.dao.ShopProductToLabelDao;
import com.peanut.modules.book.entity.ShopProductToLabelEntity;
import com.peanut.modules.book.service.ShopProductToLabelService;