package com.gkhy.huataiFourierSpecialGasMonitor.service.impl;
|
|
import com.gkhy.huataiFourierSpecialGasMonitor.entity.GasWarnLogSmsUser;
|
import com.gkhy.huataiFourierSpecialGasMonitor.repository.GasWarnLogSmsUserRepository;
|
import com.gkhy.huataiFourierSpecialGasMonitor.service.GasWarnLogSmsUserService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
/**
|
* @author Mr.huang
|
* @decription
|
* @date 2023/8/10 16:24
|
*/
|
@Service
|
public class GasWarnLogSmsUserServiceImpl implements GasWarnLogSmsUserService {
|
|
@Autowired
|
private GasWarnLogSmsUserRepository gasWarnLogSmsUserRepository;
|
|
@Override
|
public List<GasWarnLogSmsUser> saveAll(List<GasWarnLogSmsUser> gasWarnLogSmsUsers) {
|
return gasWarnLogSmsUserRepository.saveAll(gasWarnLogSmsUsers);
|
}
|
}
|