This commit is contained in:
wangjinlei
2023-09-20 15:14:30 +08:00
parent f0f7e3827a
commit e0a103358c
7 changed files with 93 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.ShopProductLabelEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ShopProductLabelDao extends BaseMapper<ShopProductLabelEntity> {
}