智慧保安后台管理项目备份
zhongrj
2024-05-24 b5960d1968e007b91d4d33dd7cbb74f1b566f2c1
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.licence.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.licence.entity.LicencePaper;
 
import java.util.List;
 
 
/**
 * 许可证Mapper 接口
 * @author zhongrj
 */
public interface LicencePaperMapper extends BaseMapper<LicencePaper> {
    /**
     * 根据deptId查询 许可证信息
     * @param licencePaper
     * @return
     */
    List<LicencePaper> getLicenceListByDeptId(@Param("licencePaper") LicencePaper licencePaper);
}