luoyb
2021-03-16 4aac200200f5e5357b7ec5dd56ddb6b31d129c16
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package cc.mrbird.febs.server.hr.service;
 
import cc.mrbird.febs.common.core.entity.system.DicItem;
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-31 09:11:00
 * @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);
 
    /**
     * 根据Id批量逻辑删除记录
     * <p>
     * date 2021-01-28 10:48
     *
     * @param ids 待删除Id
     * @return void
     * @author: luoyibo
     */
    void logicDelEmpPhysicalExam(String ids);
 
    /**
     * 从暂存状态转成正式状态
     * <p>
     * date 2021-02-04 21:11
     *
     * @param ids 待转换记录Id
     * @return boolean
     * @author: luoyibo
     */
    boolean momentToNormal(String ids);
 
    void importEmpPhysicalExam(List<List<Object>> listObject,List<String>  returnList,List<DicItem> dicItems);
}