zhitong.yu
2024-12-27 8abbee975353926e51a426a75c67119337fbdae4
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
package com.hxzk.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
import com.hxzk.pojo.TbZypCircuit;
 
/**
 * <p>
 * 航锦化工断路安全作业证 服务类
 * </p>
 *
 * @author wangfei
 * @since 2024-04-23
 */
public interface TbZypCircuitService extends IService<TbZypCircuit> {
    PageInfo<TbZypCircuit> findAll(Integer page, Integer limit);
 
    PageInfo<TbZypCircuit> findSearch(Integer page, Integer limit,String applicant,String code);
 
 
 
    TbZypCircuit findtagidZypCircuit(Integer id);
 
    int addZypCircuit(TbZypCircuit tbZypCircuit);
 
    void updateZypCircuit(TbZypCircuit tbZypCircuit);
 
    void deleteZypCircuit(Integer id);
}