luoyb
2021-01-31 eb9efc5d8315a75393a86e1f237107cbd1faf30d
febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/service/IEmpPhysicalExamService.java
@@ -9,13 +9,12 @@
import java.util.List;
/**
*
* name:EmpPhysicalexam
* package:cc.mrbird.febs.server.hr.controller
* description:员工体检信息服务接口
*
* @author luoyibo
* @date 2021-01-24 20:35:19
 * @date 2021-01-31 09:11:00
* @since JDK1.8
*/
public interface IEmpPhysicalExamService extends IService<EmpPhysicalExam> {
@@ -23,37 +22,48 @@
* 查询(分页)
*
* @param request QueryRequest
* @param empPhysicalexam empPhysicalexam
* @return IPage<EmpPhysicalexam>
     * @param empPhysicalExam empPhysicalExam
     * @return IPage<EmpPhysicalExam>
*/
IPage<EmpPhysicalExam> findEmpPhysicalexams(QueryRequest request, EmpPhysicalExam empPhysicalexam);
    IPage<EmpPhysicalExam> findEmpPhysicalExams(QueryRequest request, EmpPhysicalExam empPhysicalExam);
/**
* 查询(所有)
*
* @param empPhysicalexam empPhysicalexam
* @return List<EmpPhysicalexam>
     * @param empPhysicalExam empPhysicalExam
     * @return List<EmpPhysicalExam>
*/
List<EmpPhysicalExam> findEmpPhysicalexams(EmpPhysicalExam empPhysicalexam);
    List<EmpPhysicalExam> findEmpPhysicalExams(EmpPhysicalExam empPhysicalExam);
/**
* 新增
*
* @param empPhysicalexam empPhysicalexam
     * @param empPhysicalExam empPhysicalExam
*/
void createEmpPhysicalexam(EmpPhysicalExam empPhysicalexam);
    void createEmpPhysicalExam(EmpPhysicalExam empPhysicalExam);
/**
* 修改
*
* @param empPhysicalexam empPhysicalexam
     * @param empPhysicalExam empPhysicalExam
*/
void updateEmpPhysicalexam(EmpPhysicalExam empPhysicalexam);
    void updateEmpPhysicalExam(EmpPhysicalExam empPhysicalExam);
/**
* 删除
*
* @param empPhysicalexam empPhysicalexam
     * @param empPhysicalExam empPhysicalExam
*/
void deleteEmpPhysicalexam(EmpPhysicalExam empPhysicalexam);
    void deleteEmpPhysicalExam(EmpPhysicalExam empPhysicalExam);
    /**
     * 根据Id批量逻辑删除记录
     * <p>
     * date 2021-01-28 10:48
     *
     * @param ids 待删除Id
     * @return void
     * @author: luoyibo
     */
    void logicDelEmpPhysicalExam(String ids);
}