ke
2024-07-19 08a962d2925baa255207fdf979e6fee794f1773b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.gistack.sm.sjztmd.mapper;
 
import cn.gistack.sm.sjztmd.entity.TbDykeUnitDanger;
import cn.gistack.sm.sjztmd.vo.TbDykeUnitDangerVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @Author AIX
 * @Date 2024/6/28 14:05
 * @Version 1.0
 */
public interface TbDykeUnitDangerMapper extends BaseMapper<TbDykeUnitDanger> {
 
    /**
     * 获取提防单元危害等级评定列表
     * @param dykeUnitDangerVO
     * @return
     */
    List<TbDykeUnitDangerVO> listDykeUnitDanger(@Param("params") TbDykeUnitDangerVO dykeUnitDangerVO);
 
}