jiangqs
2023-09-04 f79a327bd4e5d1511ac3b738530b0f5c63772aec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.shop.service.impl.shop;
 
import com.ruoyi.shop.domain.pojo.shop.AuthenticationProcess;
import com.ruoyi.shop.mapper.shop.AuthenticationProcessMapper;
import com.ruoyi.shop.service.shop.AuthenticationProcessService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 *  服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-06-02
 */
@Service
public class AuthenticationProcessServiceImpl extends ServiceImpl<AuthenticationProcessMapper, AuthenticationProcess> implements AuthenticationProcessService {
 
}