zhuo
2025-03-06 6dd37dcb0e2eae72dc1951026a1a5ba51703ce18
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
package com.ruoyi.require.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.require.excel.FeLightningProtectionExcel;
import com.ruoyi.require.mapper.FeLightningProtectionMapper;
import com.ruoyi.require.pojo.FeLightningProtection;
import com.ruoyi.require.service.FeLightningProtectionService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * <p>
 * 设施和环境条件-设施和环境条件要求-防雷检测 服务实现类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-11-07 04:16:36
 */
@Service
public class FeLightningProtectionServiceImpl extends ServiceImpl<FeLightningProtectionMapper, FeLightningProtection> implements FeLightningProtectionService {
 
    @Override
    public List<FeLightningProtectionExcel> exportOfLightningProtectionDetection() {
        return baseMapper.exportOfLightningProtectionDetection();
    }
}