package cc.mrbird.febs.server.hr.service;
|
|
import cc.mrbird.febs.server.hr.entity.EmpPhysicalExam;
|
|
import cc.mrbird.febs.common.core.entity.QueryRequest;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
*
|
* name:EmpPhysicalexam
|
* package:cc.mrbird.febs.server.hr.controller
|
* description:员工体检信息服务接口
|
*
|
* @author luoyibo
|
* @date 2021-01-24 20:35:19
|
* @since JDK1.8
|
*/
|
public interface IEmpPhysicalExamService extends IService<EmpPhysicalExam> {
|
/**
|
* 查询(分页)
|
*
|
* @param request QueryRequest
|
* @param empPhysicalexam empPhysicalexam
|
* @return IPage<EmpPhysicalexam>
|
*/
|
IPage<EmpPhysicalExam> findEmpPhysicalexams(QueryRequest request, EmpPhysicalExam empPhysicalexam);
|
|
/**
|
* 查询(所有)
|
*
|
* @param empPhysicalexam empPhysicalexam
|
* @return List<EmpPhysicalexam>
|
*/
|
List<EmpPhysicalExam> findEmpPhysicalexams(EmpPhysicalExam empPhysicalexam);
|
|
/**
|
* 新增
|
*
|
* @param empPhysicalexam empPhysicalexam
|
*/
|
void createEmpPhysicalexam(EmpPhysicalExam empPhysicalexam);
|
|
/**
|
* 修改
|
*
|
* @param empPhysicalexam empPhysicalexam
|
*/
|
void updateEmpPhysicalexam(EmpPhysicalExam empPhysicalexam);
|
|
/**
|
* 删除
|
*
|
* @param empPhysicalexam empPhysicalexam
|
*/
|
void deleteEmpPhysicalexam(EmpPhysicalExam empPhysicalexam);
|
}
|