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