高低电压穿越相关接口走算法模块
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.njcn.harmonic.controller.powerstatistics;
|
||||
|
||||
import com.njcn.harmonic.service.activepowerrange.PowerStatisticsService;
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import com.njcn.web.controller.BaseController;
|
||||
|
||||
/**
|
||||
* 有功功率趋势统计 前端控制器
|
||||
* @author guofeihu
|
||||
* @since 2024-08-20
|
||||
*/
|
||||
@Slf4j
|
||||
@RestController
|
||||
@RequestMapping("/powerStatistics")
|
||||
@Api(tags = "有功功率趋势")
|
||||
@AllArgsConstructor
|
||||
public class PowerStatisticsController extends BaseController {
|
||||
|
||||
private final PowerStatisticsService powerStatisticsService;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.njcn.harmonic.service.activepowerrange;
|
||||
|
||||
/**
|
||||
* 有功功率趋势统计 服务类
|
||||
* @author guofeihu
|
||||
* @since 2024-08-20
|
||||
*/
|
||||
public interface PowerStatisticsService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.njcn.harmonic.service.activepowerrange.impl;
|
||||
|
||||
import com.njcn.harmonic.service.activepowerrange.PowerStatisticsService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 有功功率趋势统计 服务实现类
|
||||
* @author guofeihu
|
||||
* @since 2024-08-20
|
||||
*/
|
||||
@Service
|
||||
public class PowerStatisticsServiceImpl implements PowerStatisticsService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user