xiangpei
2024-11-22 c8bc73954b11b40cc62945099a4f7ca1a73154a1
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
package com.ycl.mapper;
 
import java.util.List;
import com.ycl.system.domain.Leaveapply;
 
/**
 * 请假Mapper接口
 *
 * @author shenzhanwang
 * @date 2022-04-02
 */
public interface LeaveapplyMapper
{
    /**
     * 查询请假
     *
     * @param id 请假主键
     * @return 请假
     */
    public Leaveapply selectLeaveapplyById(Long id);
 
    /**
     * 查询请假列表
     *
     * @param leaveapply 请假
     * @return 请假集合
     */
    public List<Leaveapply> selectLeaveapplyList(Leaveapply leaveapply);
 
    /**
     * 新增请假
     *
     * @param leaveapply 请假
     * @return 结果
     */
    public int insertLeaveapply(Leaveapply leaveapply);
 
    /**
     * 修改请假
     *
     * @param leaveapply 请假
     * @return 结果
     */
    public int updateLeaveapply(Leaveapply leaveapply);
 
    /**
     * 删除请假
     *
     * @param id 请假主键
     * @return 结果
     */
    public int deleteLeaveapplyById(Long id);
 
    /**
     * 批量删除请假
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteLeaveapplyByIds(String[] ids);
}