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
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.JianbjSelf;
 
import java.util.List;
 
/**
 * 剪板机自检;(jianbj_self)表服务接口
 * @author : http://www.chiner.pro
 * @date : 2022-11-22
 */
public interface JianbjSelfService extends IService<JianbjSelf> {
 
    /**
     * 通过ID查询单条数据
     *
     * @param id 主键
     * @return 实例对象
     */
    JianbjSelf queryById(String id);
 
    /**
     * 分页查询
     *
     * @param jianbjSelf 筛选条件
     * @param current 当前页码
     * @param size  每页大小
     * @return
     */
    Page<JianbjSelf> paginQuery(JianbjSelf jianbjSelf, long current, long size);
    /**
     * 新增数据
     *
     * @param jianbjSelf 实例对象
     * @return 实例对象
     */
    JianbjSelf insert(JianbjSelf jianbjSelf);
    /**
     * 更新数据
     *
     * @param jianbjSelf 实例对象
     * @return 实例对象
     */
    JianbjSelf update(JianbjSelf jianbjSelf);
    /**
     * 通过主键删除数据
     *
     * @param id 主键
     * @return 是否成功
     */
    boolean deleteById(String id);
 
    /**
     *
     * @param headId
     * @return
     */
    List<JianbjSelf> queryByHeadId(String headId);
 
 
}