AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package org.jeecg.modules.arj.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.arj.entity.JianbjCheck;
 
import java.util.List;
 
/**
 * 剪板机抽检;(jianbj_check)表服务接口
 * @author : http://www.chiner.pro
 * @date : 2022-11-22
 */
public interface JianbjCheckService extends IService<JianbjCheck> {
 
    /**
     * 通过ID查询单条数据
     *
     * @param id 主键
     * @return 实例对象
     */
    JianbjCheck queryById(String id);
 
    /**
     * 分页查询
     *
     * @param jianbjCheck 筛选条件
     * @param current 当前页码
     * @param size  每页大小
     * @return
     */
    Page<JianbjCheck> paginQuery(JianbjCheck jianbjCheck, long current, long size);
    /**
     * 新增数据
     *
     * @param jianbjCheck 实例对象
     * @return 实例对象
     */
    JianbjCheck insert(JianbjCheck jianbjCheck);
    /**
     * 更新数据
     *
     * @param jianbjCheck 实例对象
     * @return 实例对象
     */
    JianbjCheck update(JianbjCheck jianbjCheck);
    /**
     * 通过主键删除数据
     *
     * @param undefinedId 主键
     * @return 是否成功
     */
    boolean deleteById(String undefinedId);
 
    /**
     *
     * @param headId
     * @return
     */
    List<JianbjCheck> queryByHeadId(String headId);
 
 
 
}