新版
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package com.peanut.modules.book.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.peanut.modules.book.entity.ShopProductLabelEntity;
|
||||
|
||||
public interface ShopProductLabelService extends IService<ShopProductLabelEntity> {
|
||||
}
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user