package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypBlind;
|
|
/**
|
* <p>
|
* 航锦化工盲板抽堵安全作业证 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-23
|
*/
|
public interface TbZypBlindService extends IService<TbZypBlind> {
|
PageInfo<TbZypBlind> findAll(Integer page, Integer limit);
|
|
PageInfo<TbZypBlind> findSearch(Integer page, Integer limit,String applicant,String code);
|
|
|
|
TbZypBlind findtagidZypBlind(Integer id);
|
|
int addZypBlind(TbZypBlind tbZypBlind);
|
|
void updateZypBlind(TbZypBlind tbZypBlind);
|
|
void deleteZypBlind(Integer id);
|
}
|