package com.gkhy.testFourierSpecialGasMonitor.service.impl; import com.gkhy.testFourierSpecialGasMonitor.entity.GasWarnLogSmsUser; import com.gkhy.testFourierSpecialGasMonitor.repository.GasWarnLogSmsUserRepository; import com.gkhy.testFourierSpecialGasMonitor.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 saveAll(List gasWarnLogSmsUsers) { return gasWarnLogSmsUserRepository.saveAll(gasWarnLogSmsUsers); } }