whycxzp
2025-06-11 a054af9e72b1d64f459eec16178a656b829e069c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.whyc.service;
 
import com.whyc.dto.Response;
import com.whyc.mapper.AlarmInspectionMapper;
import com.whyc.pojo.web_site.AlarmInspection;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
 
@Service
public class AlarmInspectionService {
 
    @Resource
    private AlarmInspectionMapper mapper;
 
    public Response getList(Integer stationId, Integer inspectionType) {
        //需要附加填充 负责班组信息 及 告警诊断信息
        List<AlarmInspection> list = mapper.getList(stationId);
        return new Response().set(1,list);
    }
}