智慧保安后台管理-外网项目备份
zhongrj
2023-09-17 8853292babb2ad94de4a3207966f1e83b767cd2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
package org.springblade.modules.health.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.health.entity.HealthCard;
import org.springblade.modules.health.vo.HealthCardVO;
 
import java.util.List;
 
/**
 *  健康证Mapper 接口
 *
 * @author zhongrj
 * @since 2022-03-01
 */
public interface HealthCardMapper extends BaseMapper<HealthCard> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param healthCard
     * @return
     */
    List<HealthCardVO> selectHealthCardPage(IPage<HealthCardVO> page, @Param("healthCard") HealthCardVO healthCard);
}