package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypGround;
|
|
/**
|
* <p>
|
* 航锦化工动土安全作业证 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-23
|
*/
|
public interface TbZypGroundService extends IService<TbZypGround> {
|
PageInfo<TbZypGround> findAll(Integer page, Integer limit);
|
|
PageInfo<TbZypGround> findSearch(Integer page, Integer limit,String applicant,String code);
|
|
|
|
TbZypGround findtagidZypGround(Integer id);
|
|
int addZypGround(TbZypGround tbZypGround);
|
|
void updateZypGround(TbZypGround tbZypGround);
|
|
void deleteZypGround(Integer id);
|
}
|