This commit is contained in:
wangjinlei
2023-09-20 16:14:49 +08:00
parent 2bfc0f7919
commit c39ce41ce9
5 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.book.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.book.entity.ShopProductToLabelEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductToLabelDao extends BaseMapper<ShopProductToLabelEntity> {
}