参数校验

This commit is contained in:
2025-05-03 10:20:50 +08:00
parent d84021f3db
commit bce338ee19
12 changed files with 688 additions and 7 deletions

View File

@ -0,0 +1,18 @@
package com.greenorange.promotion.mapper;
import com.greenorange.promotion.model.entity.SysOperLog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author 35880
* @description 针对表【sys_oper_log(操作日志记录)】的数据库操作Mapper
* @createDate 2025-05-02 20:24:46
* @Entity com.greenorange.promotion.model.entity.SysOperLog
*/
public interface SysOperLogMapper extends BaseMapper<SysOperLog> {
}