zhuo
2025-04-17 3baa0061112a555d75c6bc606d5271ec842ac607
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.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.require.excel.FeLightningProtectionExcel;
import com.ruoyi.require.pojo.FeLightningProtection;
 
import java.util.List;
 
/**
 * <p>
 * 设施和环境条件-设施和环境条件要求-防雷检测 服务类
 * </p>
 *
 * @author
 * @since 2024-11-07 04:16:36
 */
public interface FeLightningProtectionService extends IService<FeLightningProtection> {
 
    List<FeLightningProtectionExcel> exportOfLightningProtectionDetection();
 
}