zhitong.yu
2024-10-11 eb7075c41933b7d8043a66912631076eed13ae08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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);
}