whycxzp
2021-04-15 1e7a16a89d0141882dc1f8d22d416ee741cace4f
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.whyc.service;
 
import com.whyc.dto.Response;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
@Service
public class DeviceService {
 
    @Autowired
    private AFECtrlService afeCtrlService;
    @Autowired
    private AFEInverterService afeInverterService;
    @Autowired
    private AFERectifierService afeRectifierService;
    @Autowired
    private CentralMonitorSysCtrlService centralMonitorSysCtrlService;
    @Autowired
    private CentralMonitorSysRTService centralMonitorSysRTService;
    @Autowired
    private CentralMonitorSysSTService centralMonitorSysSTService;
    @Autowired
    private DeviceStateService deviceStateService;
 
    @Autowired
    private MotorSystemInfService motorSystemInfService;
    @Autowired
    private OilCommService oilCommService;
 
    @Autowired
    private RectifierPowerCtrlService rectifierPowerCtrlService;
    @Autowired
    private RectifierPowerService rectifierPowerService;
    @Autowired
    private UPSCommService upsCommService;
    @Autowired
    private WaterCommService waterCommService;
 
    //TODO
    public Response getAllRT(){
        return null;
    }
 
 
 
}