zhangf
2024-07-26 698995469a3fcdc3164fc486d18bdbe059b6c92e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.gkhy.fourierSpecialGasMonitor.service.impl;
 
import com.gkhy.fourierSpecialGasMonitor.entity.GasWarnLogSmsUser;
import com.gkhy.fourierSpecialGasMonitor.repository.GasWarnLogSmsUserRepository;
import com.gkhy.fourierSpecialGasMonitor.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);
    }
}