This commit is contained in:
wuchunlei
2024-05-24 15:50:32 +08:00
14 changed files with 300 additions and 74 deletions

View File

@@ -1,7 +1,7 @@
package com.peanut.modules.book.dao;
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.book.entity.ShopStore;
import com.peanut.modules.common.entity.ShopStore;
import org.apache.ibatis.annotations.Mapper;
@Mapper

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.github.yulichang.base.MPJBaseMapper;
import com.peanut.modules.common.entity.ShopStoreToProductEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopStoreToProductDao extends MPJBaseMapper<ShopStoreToProductEntity> {
}