提交 | 用户 | 时间
|
38b150
|
1 |
package com.jcdm.main.em.inspectionPlan.mapper; |
懒 |
2 |
|
|
3 |
import java.util.List; |
0ce25f
|
4 |
|
W |
5 |
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
6 |
import com.jcdm.main.em.inspectionItems.domain.EmInspectionItems; |
38b150
|
7 |
import com.jcdm.main.em.inspectionPlan.domain.EmInspectionPlan; |
懒 |
8 |
|
|
9 |
/** |
|
10 |
* 点检保养计划Mapper接口 |
|
11 |
* |
|
12 |
* @author Yi |
|
13 |
* @date 2024-03-08 |
|
14 |
*/ |
0ce25f
|
15 |
public interface EmInspectionPlanMapper extends BaseMapper<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 id 点检保养计划主键 |
|
53 |
* @return 结果 |
|
54 |
*/ |
|
55 |
public int deleteEmInspectionPlanById(Long id); |
|
56 |
|
|
57 |
/** |
|
58 |
* 批量删除点检保养计划 |
|
59 |
* |
|
60 |
* @param ids 需要删除的数据主键集合 |
|
61 |
* @return 结果 |
|
62 |
*/ |
|
63 |
public int deleteEmInspectionPlanByIds(Long[] ids); |
|
64 |
} |