gaoluyang
2025-02-24 c89b4a74d3d770da0ccdd679e5942b1e9028776b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.require.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.require.excel.FeLightningProtectionExcel;
import com.ruoyi.require.pojo.FeLightningProtection;
 
import java.util.List;
 
/**
 * <p>
 * 设施和环境条件-设施和环境条件要求-防雷检测 Mapper 接口
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-11-07 04:16:36
 */
public interface FeLightningProtectionMapper extends BaseMapper<FeLightningProtection> {
 
    List<FeLightningProtectionExcel> exportOfLightningProtectionDetection();
 
}