123
This commit is contained in:
@@ -15,4 +15,8 @@ import org.apache.ibatis.annotations.Param;
|
||||
public interface LowHeightRiskMapper extends BaseMapper<LowHeightRisk> {
|
||||
|
||||
Page<LowHeightRiskAdminVo> pageAdmin(@Param("build") Page<Object> build, @Param("bo") LowHeightRiskAdminVo bo);
|
||||
|
||||
void incsScreenShot(@Param("id") Long id);
|
||||
|
||||
void incsScreenRecording(@Param("id") Long id);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.ruoyi.cai.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.ruoyi.cai.domain.UserErrorLog;
|
||||
import com.ruoyi.cai.dto.admin.vo.UserErrorLogAdminVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
/**
|
||||
* 用户异常记录Mapper接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-22
|
||||
*/
|
||||
public interface UserErrorLogMapper extends BaseMapper<UserErrorLog> {
|
||||
|
||||
Page<UserErrorLogAdminVo> pageAdmin(@Param("build") Page<Object> build, @Param("bo") UserErrorLogAdminVo bo);
|
||||
}
|
||||
Reference in New Issue
Block a user