智慧保安后台管理-外网
钟日健
2022-05-24 181f68abea0ff8047e3a8b8a436a8e6125d44491
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.springblade.modules.absentrecords.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.absentrecords.entity.AbsentRecords;
import org.springblade.modules.accreditation.entity.AccreditationRecords;
import org.springblade.modules.accreditation.excel.ExportSecurityBookPaperExcel;
import org.springblade.modules.accreditation.vo.AccreditationRecordsVo;
 
import java.util.List;
 
/**
 * 缺考记录Mapper 接口
 * @author zhongrj
 */
public interface AbsentRecordsMapper extends BaseMapper<AbsentRecords> {
 
}