-
admin
2024-05-10 1c84aef7b3d88ce9f2ac5d3173f892a1cd727800
提交 | 用户 | 时间
523903 1 package com.jcdm.main.em.inspectionPlanItemsProject.mapper;
2
3 import java.util.List;
4
5 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
6 import com.jcdm.main.em.inspectionPlanItemsProject.domain.EmInspectionPlanItemsProject;
7
8 /**
9  * 点检任务-项目Mapper接口
10  * 
11  * @author Yi
12  * @date 2024-03-23
13  */
14 public interface EmInspectionPlanItemsProjectMapper extends BaseMapper<EmInspectionPlanItemsProject>
15 {
16     /**
17      * 查询点检任务-项目
18      * 
19      * @param id 点检任务-项目主键
20      * @return 点检任务-项目
21      */
22     public EmInspectionPlanItemsProject selectEmInspectionPlanItemsProjectById(Long id);
23
24     /**
25      * 查询点检任务-项目列表
26      * 
27      * @param emInspectionPlanItemsProject 点检任务-项目
28      * @return 点检任务-项目集合
29      */
30     public List<EmInspectionPlanItemsProject> selectEmInspectionPlanItemsProjectList(EmInspectionPlanItemsProject emInspectionPlanItemsProject);
31
32     /**
33      * 新增点检任务-项目
34      * 
35      * @param emInspectionPlanItemsProject 点检任务-项目
36      * @return 结果
37      */
38     public int insertEmInspectionPlanItemsProject(EmInspectionPlanItemsProject emInspectionPlanItemsProject);
39
40     /**
41      * 修改点检任务-项目
42      * 
43      * @param emInspectionPlanItemsProject 点检任务-项目
44      * @return 结果
45      */
46     public int updateEmInspectionPlanItemsProject(EmInspectionPlanItemsProject emInspectionPlanItemsProject);
47
48     /**
49      * 删除点检任务-项目
50      * 
51      * @param id 点检任务-项目主键
52      * @return 结果
53      */
54     public int deleteEmInspectionPlanItemsProjectById(Long id);
55
56     /**
57      * 批量删除点检任务-项目
58      * 
59      * @param ids 需要删除的数据主键集合
60      * @return 结果
61      */
62     public int deleteEmInspectionPlanItemsProjectByIds(Long[] ids);
63 }