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);
|
}
|
}
|