懒羊羊
2024-03-15 7f6f725ad67e017c0bbae2a4de01952b88352af0
提交 | 用户 | 时间
b5450a 1 package com.jcdm.main.em.inspectionPlanArchives.service;
H 2
3 import java.util.List;
4 import com.jcdm.main.em.inspectionPlanArchives.domain.EmInspectionPlanArchives;
5
6 /**
7  * 点检保养计划设备清单Service接口
8  * 
9  * @author Yi
10  * @date 2024-03-14
11  */
12 public interface IEmInspectionPlanArchivesService 
13 {
14     /**
15      * 查询点检保养计划设备清单
16      * 
17      * @param id 点检保养计划设备清单主键
18      * @return 点检保养计划设备清单
19      */
20     public EmInspectionPlanArchives selectEmInspectionPlanArchivesById(Long id);
21
22     /**
23      * 查询点检保养计划设备清单列表
24      * 
25      * @param emInspectionPlanArchives 点检保养计划设备清单
26      * @return 点检保养计划设备清单集合
27      */
28     public List<EmInspectionPlanArchives> selectEmInspectionPlanArchivesList(EmInspectionPlanArchives emInspectionPlanArchives);
29
30     /**
31      * 新增点检保养计划设备清单
32      * 
33      * @param emInspectionPlanArchives 点检保养计划设备清单
34      * @return 结果
35      */
36     public int insertEmInspectionPlanArchives(EmInspectionPlanArchives emInspectionPlanArchives);
37
38     /**
39      * 修改点检保养计划设备清单
40      * 
41      * @param emInspectionPlanArchives 点检保养计划设备清单
42      * @return 结果
43      */
44     public int updateEmInspectionPlanArchives(EmInspectionPlanArchives emInspectionPlanArchives);
45
46     /**
47      * 批量删除点检保养计划设备清单
48      * 
49      * @param ids 需要删除的点检保养计划设备清单主键集合
50      * @return 结果
51      */
52     public int deleteEmInspectionPlanArchivesByIds(Long[] ids);
53
54     /**
55      * 删除点检保养计划设备清单信息
56      * 
57      * @param id 点检保养计划设备清单主键
58      * @return 结果
59      */
60     public int deleteEmInspectionPlanArchivesById(Long id);
61 }