package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypSpace;
|
|
/**
|
* <p>
|
* 航锦化工受限空间安全作业证 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-22
|
*/
|
public interface TbZypSpaceService extends IService<TbZypSpace> {
|
|
PageInfo<TbZypSpace> findAll(Integer page, Integer limit);
|
|
PageInfo<TbZypSpace> findSearch(Integer page, Integer limit,String applicant,String code);
|
|
|
|
TbZypSpace findtagidSpace(Integer id);
|
|
int addSpace(TbZypSpace tbZypSpace);
|
|
void updateSpace(TbZypSpace tbZypSpace);
|
|
void deleteSpace(Integer id);
|
|
}
|