package com.whyc.service;
|
|
import com.whyc.mapper.WorksheetAlarmMapper;
|
import com.whyc.pojo.WorksheetAlarm;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
/**
|
* @author perryhsu
|
* @date 2022/12/18 15:24
|
*/
|
@Service
|
public class WorksheetAlarmService {
|
|
@Resource
|
private WorksheetAlarmMapper mapper;
|
|
public void insert(WorksheetAlarm worksheetAlarm) {
|
mapper.insert(worksheetAlarm);
|
}
|
}
|