heheng
2025-09-12 3b109477ba6bd8dce0f61eb75248e603e584d8af
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
package com.gkhy.system.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.system.domain.Hazards;
import com.gkhy.system.domain.dto.HazardsEditDTO;
 
import java.util.List;
 
/**
 * <p>
 * 隐患上报/整改/台账 服务类
 * </p>
 *
 * @author hh
 * @since 2025-09-08 10:36:52
 */
public interface HazardsService extends IService<Hazards> {
 
 
    List<Hazards> getHazardsList(Hazards hazards);
 
    int saveHazards(Hazards inspection);
 
    int updateHazards(HazardsEditDTO dto);
 
    int deleteHazards(Long id);
}