package com.ruoyi.shop.service.impl.shop;
|
|
import com.ruoyi.shop.domain.pojo.shop.ShopAuthentication;
|
import com.ruoyi.shop.mapper.shop.ShopAuthenticationMapper;
|
import com.ruoyi.shop.service.shop.ShopAuthenticationService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 商户信息 服务实现类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-06-02
|
*/
|
@Service
|
public class ShopAuthenticationServiceImpl extends ServiceImpl<ShopAuthenticationMapper, ShopAuthentication> implements ShopAuthenticationService {
|
|
}
|