Browse Source

岗检表

csg6 10 months ago
parent
commit
90290fd4da

+ 62 - 0
ruoyi-postcheck/src/main/java/com/ruoyi/postCheck/service/IPostCheckedItemsService.java

@@ -0,0 +1,62 @@
1
+package com.ruoyi.postCheck.service;
2
+
3
+import java.util.List;
4
+import com.ruoyi.postCheck.domain.PostCheckedItems;
5
+import com.baomidou.mybatisplus.extension.service.IService;
6
+
7
+/**
8
+ * 岗检表管理明细Service接口
9
+ *
10
+ * @author csg
11
+ * @date 2024-01-05
12
+ */
13
+public interface IPostCheckedItemsService extends IService<PostCheckedItems>
14
+{
15
+    /**
16
+     * 查询岗检表管理明细
17
+     *
18
+     * @param id 岗检表管理明细主键
19
+     * @return 岗检表管理明细
20
+     */
21
+    public PostCheckedItems selectPostCheckedItemsById(Long id);
22
+
23
+    /**
24
+     * 查询岗检表管理明细列表
25
+     *
26
+     * @param postCheckedItems 岗检表管理明细
27
+     * @return 岗检表管理明细集合
28
+     */
29
+    public List<PostCheckedItems> selectPostCheckedItemsList(PostCheckedItems postCheckedItems);
30
+
31
+    /**
32
+     * 新增岗检表管理明细
33
+     *
34
+     * @param postCheckedItems 岗检表管理明细
35
+     * @return 结果
36
+     */
37
+    public int insertPostCheckedItems(PostCheckedItems postCheckedItems);
38
+
39
+    /**
40
+     * 修改岗检表管理明细
41
+     *
42
+     * @param postCheckedItems 岗检表管理明细
43
+     * @return 结果
44
+     */
45
+    public int updatePostCheckedItems(PostCheckedItems postCheckedItems);
46
+
47
+    /**
48
+     * 批量删除岗检表管理明细
49
+     *
50
+     * @param ids 需要删除的岗检表管理明细主键集合
51
+     * @return 结果
52
+     */
53
+    public int deletePostCheckedItemsByIds(Long[] ids);
54
+
55
+    /**
56
+     * 删除岗检表管理明细信息
57
+     *
58
+     * @param id 岗检表管理明细主键
59
+     * @return 结果
60
+     */
61
+    public int deletePostCheckedItemsById(Long id);
62
+}