通用模块-商品评价

This commit is contained in:
wuchunlei
2024-03-27 17:04:16 +08:00
parent 4fc3835fac
commit 1b1cee0e90
6 changed files with 208 additions and 8 deletions

View File

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