wujian
2024-03-22 0ce25f34a0d627a5cc0d073d24b8c3e569feac15
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
package com.jcdm.main.em.inspectionPlanInfo.mapper;
 
import java.util.List;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.jcdm.main.em.inspectionPlanInfo.domain.EmInspectionPlanInfo;
 
/**
 * 设备点检保养计划Mapper接口
 * 
 * @author Yi
 * @date 2024-03-19
 */
public interface EmInspectionPlanInfoMapper extends BaseMapper<EmInspectionPlanInfo>
{
    /**
     * 查询设备点检保养计划
     * 
     * @param id 设备点检保养计划主键
     * @return 设备点检保养计划
     */
    public EmInspectionPlanInfo selectEmInspectionPlanInfoById(Long id);
 
    /**
     * 查询设备点检保养计划列表
     * 
     * @param emInspectionPlanInfo 设备点检保养计划
     * @return 设备点检保养计划集合
     */
    public List<EmInspectionPlanInfo> selectEmInspectionPlanInfoList(EmInspectionPlanInfo emInspectionPlanInfo);
 
    /**
     * 新增设备点检保养计划
     * 
     * @param emInspectionPlanInfo 设备点检保养计划
     * @return 结果
     */
    public int insertEmInspectionPlanInfo(EmInspectionPlanInfo emInspectionPlanInfo);
 
    /**
     * 修改设备点检保养计划
     * 
     * @param emInspectionPlanInfo 设备点检保养计划
     * @return 结果
     */
    public int updateEmInspectionPlanInfo(EmInspectionPlanInfo emInspectionPlanInfo);
 
    /**
     * 删除设备点检保养计划
     * 
     * @param id 设备点检保养计划主键
     * @return 结果
     */
    public int deleteEmInspectionPlanInfoById(Long id);
 
    /**
     * 批量删除设备点检保养计划
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteEmInspectionPlanInfoByIds(Long[] ids);
}