package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypElectricity;
|
|
/**
|
* <p>
|
* 航锦化工临时用电安全作业证 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-23
|
*/
|
public interface TbZypElectricityService extends IService<TbZypElectricity> {
|
PageInfo<TbZypElectricity> findAll(Integer page, Integer limit);
|
|
PageInfo<TbZypElectricity> findSearch(Integer page, Integer limit,String applicant,String code);
|
|
|
|
TbZypElectricity findtagidZypElectricity(Integer id);
|
|
int addZypElectricity(TbZypElectricity tbZypElectricity);
|
|
void updateZypElectricity(TbZypElectricity tbZypElectricity);
|
|
void deleteZypElectricity(Integer id);
|
}
|