高低电压穿越相关接口走算法模块

This commit is contained in:
guofeihu
2024-08-23 11:15:41 +08:00
parent 043b8f9a71
commit 21f4466580
29 changed files with 378 additions and 84 deletions

View File

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

View File

@@ -0,0 +1,10 @@
package com.njcn.harmonic.service.activepowerrange;
/**
* 有功功率趋势统计 服务类
* @author guofeihu
* @since 2024-08-20
*/
public interface PowerStatisticsService {
}

View File

@@ -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 {
}