package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypLifting;
|
|
/**
|
* <p>
|
* 航锦化工吊装安全作业证 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-23
|
*/
|
public interface TbZypLiftingService extends IService<TbZypLifting> {
|
PageInfo<TbZypLifting> findAll(Integer page, Integer limit);
|
|
PageInfo<TbZypLifting> findSearch(Integer page, Integer limit,String applicant,String code);
|
|
|
|
TbZypLifting findtagidZypLifting(Integer id);
|
|
int addZypLifting(TbZypLifting tbZypLifting);
|
|
void updateZypLifting(TbZypLifting tbZypLifting);
|
|
void deleteZypLifting(Integer id);
|
}
|