管理端模块-评价管理

This commit is contained in:
wuchunlei
2024-03-28 16:12:43 +08:00
parent 5104976112
commit 76fd1b11ef
3 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.peanut.modules.master.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.common.dao.ShopProductRecordDao;
import com.peanut.modules.common.entity.ShopProductRecord;
import com.peanut.modules.master.service.ShopProductRecordService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
@Slf4j
@Service("masterShopProductRecordService")
public class ShopProductRecordServiceImpl extends ServiceImpl<ShopProductRecordDao, ShopProductRecord> implements ShopProductRecordService {
}