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;
|
|
}
|