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,11 @@
package com.peanut.modules.book.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.peanut.modules.book.dao.ShopProductToLabelDao;
import com.peanut.modules.book.entity.ShopProductToLabelEntity;
import com.peanut.modules.book.service.ShopProductToLabelService;
import org.springframework.stereotype.Service;
@Service("ShopProductToLabelService")
public class ShopProductToLabelServiceImpl extends ServiceImpl<ShopProductToLabelDao, ShopProductToLabelEntity> implements ShopProductToLabelService {
}