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);
|
|
|
}
|