智慧保安后台管理-外网项目备份
Administrator
2022-03-01 7c2c09439da3dccf1e032e89e1cb950b8fa1cc26
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
 
package org.springblade.modules.health.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.health.entity.HealthCard;
import org.springblade.modules.health.vo.HealthCardVO;
 
/**
 *  健康证服务类
 *
 * @author zhongrj
 * @since 2022-03-01
 */
public interface HealthCardService extends IService<HealthCard> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param healthCardVO
     * @return
     */
    IPage<HealthCardVO> selectHealthCardPage(IPage<HealthCardVO> page, @Param("healthCardVO") HealthCardVO healthCardVO);
 
}