1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package org.springblade.modules.securitypaper.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.springblade.modules.securitypaper.entity.SecurityPaper;
|
| import java.util.List;
|
|
| /**
| * 保安员证管理Mapper 接口
| * @author zhongrj
| */
| public interface SecurityPaperMapper extends BaseMapper<SecurityPaper> {
|
| /**
| * 查询保安员证编号(跳过一些位数)
| * @param securityPaper
| * @return
| */
| List<SecurityPaper> getSecurityNumber(SecurityPaper securityPaper);
| }
|
|