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,12 @@
package com.peanut.modules.book.service.impl;
import com.peanut.modules.book.dao.ShopProductLabelDao;
import com.peanut.modules.book.entity.ShopProductLabelEntity;
import com.peanut.modules.book.service.ShopProductLabelService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
@Service("ShopProductLabelService")
public class ShopProductLabelServiceImpl extends ServiceImpl<ShopProductLabelDao, ShopProductLabelEntity> implements ShopProductLabelService {
}