liurunyu
2025-04-30 959dcca95276888cd9c092d93d276ef9aa580aef
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
27
28
29
package com.dy.pipIrrRemote.monitor;
 
import com.dy.pipIrrGlobal.daoPr.PrIntakeMapper;
import com.dy.pipIrrGlobal.rtuMw.Web2RtuMw;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
 
/**
 * @Author: liurunyu
 * @Date: 2025/4/30 16:11
 * @Description
 */
@Slf4j
@Service
public class ComTransSv extends Web2RtuMw {
 
    @Autowired
    private PrIntakeMapper prIntakeMapper;
 
    @Autowired
    private Environment env;
 
    @Autowired
    private RestTemplate restTemplate;
 
}