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