懒羊羊
2024-03-09 38b15031cc02a746bef74993da828ec441b040d5
提交 | 用户 | 时间
38b150 1 package com.jcdm.main.em.inspectionItems.service;
2
3 import java.util.List;
4 import com.jcdm.main.em.inspectionItems.domain.EmInspectionItems;
5
6 /**
7  * 点检保养项目Service接口
8  * 
9  * @author Yi
10  * @date 2024-03-08
11  */
12 public interface IEmInspectionItemsService 
13 {
14     /**
15      * 查询点检保养项目
16      * 
17      * @param id 点检保养项目主键
18      * @return 点检保养项目
19      */
20     public EmInspectionItems selectEmInspectionItemsById(Long id);
21
22     /**
23      * 查询点检保养项目列表
24      * 
25      * @param emInspectionItems 点检保养项目
26      * @return 点检保养项目集合
27      */
28     public List<EmInspectionItems> selectEmInspectionItemsList(EmInspectionItems emInspectionItems);
29
30     /**
31      * 新增点检保养项目
32      * 
33      * @param emInspectionItems 点检保养项目
34      * @return 结果
35      */
36     public int insertEmInspectionItems(EmInspectionItems emInspectionItems);
37
38     /**
39      * 修改点检保养项目
40      * 
41      * @param emInspectionItems 点检保养项目
42      * @return 结果
43      */
44     public int updateEmInspectionItems(EmInspectionItems emInspectionItems);
45
46     /**
47      * 批量删除点检保养项目
48      * 
49      * @param ids 需要删除的点检保养项目主键集合
50      * @return 结果
51      */
52     public int deleteEmInspectionItemsByIds(Long[] ids);
53
54     /**
55      * 删除点检保养项目信息
56      * 
57      * @param id 点检保养项目主键
58      * @return 结果
59      */
60     public int deleteEmInspectionItemsById(Long id);
61 }