package com.hxzk.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypFireSafety;
|
import com.hxzk.pojo.TbZypHandel;
|
|
/**
|
* <p>
|
* 动火安全作业证 服务类
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-17
|
*/
|
public interface TbZypFireSafetyService extends IService<TbZypFireSafety> {
|
PageInfo<TbZypFireSafety> findAll(Integer page, Integer limit);
|
|
PageInfo<TbZypFireSafety> findSearch(Integer page, Integer limit, String applicant, String code);
|
|
|
|
TbZypFireSafety findtagidFireSafety(Integer id);
|
|
int addDH(TbZypFireSafety tbZypFireSafety);
|
|
void updateFireSafety(TbZypFireSafety tbZypFireSafety);
|
|
|
void deleteFireSafety(Integer id);
|
|
void UpDongHuoState(String code,String iscompleted);
|
|
int FindSMSReminder(String iscompleted);
|
|
int UpDongHuoQianZi(TbZypFireSafety zypFireSafety);
|
}
|