参数校验
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
package com.greenorange.promotion.service.log;
|
||||
|
||||
import com.greenorange.promotion.model.entity.SysOperLog;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 35880
|
||||
* @description 针对表【sys_oper_log(操作日志记录)】的数据库操作Service
|
||||
* @createDate 2025-05-02 20:24:46
|
||||
*/
|
||||
public interface SysOperLogService extends IService<SysOperLog> {
|
||||
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package com.greenorange.promotion.service.log.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.greenorange.promotion.model.entity.SysOperLog;
|
||||
import com.greenorange.promotion.service.log.SysOperLogService;
|
||||
import com.greenorange.promotion.mapper.SysOperLogMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 35880
|
||||
* @description 针对表【sys_oper_log(操作日志记录)】的数据库操作Service实现
|
||||
* @createDate 2025-05-02 20:24:46
|
||||
*/
|
||||
@Service
|
||||
public class SysOperLogServiceImpl extends ServiceImpl<SysOperLogMapper, SysOperLog>
|
||||
implements SysOperLogService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user