package com.ruoyi.shop.service.impl.shop;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.shop.domain.pojo.shop.ShopSuggest;
|
import com.ruoyi.shop.mapper.shop.ShopSuggestMapper;
|
import com.ruoyi.shop.service.shop.ShopSuggestService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-05-09
|
*/
|
@Service
|
public class ShopSuggestServiceImpl extends ServiceImpl<ShopSuggestMapper, ShopSuggest> implements ShopSuggestService {
|
|
}
|