init
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.xq.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.xq.domain.UserVisitor;
|
||||
|
||||
/**
|
||||
* 用户来访记录Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-18
|
||||
*/
|
||||
public interface UserVisitorService extends IService<UserVisitor> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.ruoyi.xq.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.xq.domain.UserVisitor;
|
||||
import com.ruoyi.xq.mapper.UserVisitorMapper;
|
||||
import com.ruoyi.xq.service.UserVisitorService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 用户来访记录Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-03-18
|
||||
*/
|
||||
@Service
|
||||
public class UserVisitorServiceImpl extends ServiceImpl<UserVisitorMapper,UserVisitor> implements UserVisitorService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user