whycxzp
2025-06-12 105c22b40dc5376175eb15f4fabb04e1471fad48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.whyc.service;
 
import com.whyc.mapper.AlarmInspectionResultMapper;
import com.whyc.pojo.web_site.AlarmInspectionResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
 
@Service
public class AlarmInspectionResultService {
 
    @Resource
    private AlarmInspectionResultMapper mapper;
 
    public void add(AlarmInspectionResult result) {
        mapper.insert(result);
    }
}