| | |
| | | package com.iailab.module.ansteel.api.controller.admin; |
| | | |
| | | import cn.hutool.core.util.NumberUtil; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.iailab.framework.common.exception.ErrorCode; |
| | | import com.iailab.framework.common.exception.enums.GlobalErrorCodeConstants; |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.common.util.date.DateUtils; |
| | | import com.iailab.framework.common.util.object.BeanUtils; |
| | | import com.iailab.framework.common.util.object.ConvertUtils; |
| | | import com.iailab.framework.tenant.core.context.TenantContextHolder; |
| | | import com.iailab.module.ansteel.api.dto.*; |
| | | import com.iailab.module.ansteel.api.vo.PowerCapacitorHisPageReqVO; |
| | | import com.iailab.module.ansteel.api.vo.PowerMaxDemandMainPageReqVO; |
| | | import com.iailab.module.ansteel.common.utils.DecimalUtil; |
| | | import com.iailab.module.ansteel.job.dto.ScheduleJobDTO; |
| | | import com.iailab.module.ansteel.job.entity.ScheduleJobEntity; |
| | | import com.iailab.module.ansteel.job.service.ScheduleJobService; |
| | | import com.iailab.module.ansteel.job.vo.ScheduleJobReqVO; |
| | | import com.iailab.module.ansteel.power.entity.*; |
| | | import com.iailab.module.ansteel.power.service.*; |
| | | import com.iailab.module.data.api.point.DataPointApi; |
| | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | |
| | | @Autowired |
| | | private PowerMaxdemandDetService powerMaxdemandDetService; |
| | | |
| | | @Autowired |
| | | private PowerPriceMainService powerPriceMainService; |
| | | |
| | | public static final String VALUE = "value"; |
| | | |
| | |
| | | @GetMapping("/capacitor-his/list") |
| | | @Operation(summary = "功率因数-电容器投退历史") |
| | | public CommonResult<List<PowerCapacitorHisDTO>> getPowerCapacitorHisList(@RequestParam Map<String, Object> params) { |
| | | List<PowerCapacitorHisEntity> list = powerCapacitorHisService.list(params); |
| | | String statusId = (String) params.get("statusId"); |
| | | if (StringUtils.isBlank(statusId)) { |
| | | return success(new ArrayList<>()); |
| | | } |
| | | |
| | | List<PowerCapacitorDetEntity> detList = powerCapacitorDetService.list(statusId); |
| | | List<String> detIds = detList.stream().map(PowerCapacitorDetEntity::getId).collect(Collectors.toList()); |
| | | List<PowerCapacitorHisEntity> list = powerCapacitorHisService.list(detIds); |
| | | return success(ConvertUtils.sourceToTarget(list, PowerCapacitorHisDTO.class)); |
| | | } |
| | | |
| | | @PostMapping("/capacitor-his/page") |
| | | @Operation(summary = "功率因数-电容器投退历史(分页)") |
| | | public CommonResult<PageResult<PowerCapacitorHisDTO>> getPowerCapacitorHisPage(@RequestBody PowerCapacitorHisPageReqVO reqVO) { |
| | | if (StringUtils.isBlank(reqVO.getStatusId())) { |
| | | return error(GlobalErrorCodeConstants.BAD_REQUEST); |
| | | } |
| | | |
| | | List<PowerCapacitorDetEntity> detList = powerCapacitorDetService.list(reqVO.getStatusId()); |
| | | List<String> detIds = detList.stream().map(PowerCapacitorDetEntity::getId).collect(Collectors.toList()); |
| | | reqVO.setDetIdList(detIds); |
| | | |
| | | PageResult<PowerCapacitorHisEntity> data = powerCapacitorHisService.page(reqVO); |
| | | return success(BeanUtils.toBean(data, PowerCapacitorHisDTO.class)); |
| | | } |
| | | |
| | | @GetMapping("/control-main/list") |
| | |
| | | @GetMapping("/demand/list") |
| | | @Operation(summary = "负荷移植-月最大需量,实测需量,有功功率") |
| | | public CommonResult<List<PowerDemandDTO>> getPowerDemandList(@RequestParam Map<String, Object> params) { |
| | | log.info("负荷移植-月最大需量,实测需量,有功功率"); |
| | | List<PowerDemandDTO> result = new ArrayList<>(); |
| | | List<PowerDemandEntity> list = powerDemandService.list(params); |
| | | if (CollectionUtils.isEmpty(result)) { |
| | | if (CollectionUtils.isEmpty(list)) { |
| | | log.info("list.size=" + list.size()); |
| | | return success(result); |
| | | } |
| | | Calendar calendar = Calendar.getInstance(); |
| | |
| | | ApiPointValueQueryDTO queryCodeValue = new ApiPointValueQueryDTO(); |
| | | queryCodeValue.setStart(startTime); |
| | | queryCodeValue.setEnd(endTime); |
| | | queryCodeValue.setPointNo(entity.getCurDemand()); |
| | | List<ApiPointValueDTO> codeValueList = dataPointApi.queryPointHistoryValue(queryCodeValue); |
| | | if (CollectionUtils.isEmpty(codeValueList)) { |
| | | return success(result); |
| | |
| | | apiPointValueQueryDTO1.setEnd(new Date()); |
| | | apiPointValueQueryDTO1.setPointNo(pointNo); |
| | | Map<String, Object> maxV = dataPointApi.queryPointMaxValueRange(apiPointValueQueryDTO1); |
| | | Map<String, Object> minV = dataPointApi.queryPointMaxValueRange(apiPointValueQueryDTO1); |
| | | Map<String, Object> minV = dataPointApi.queryPointMinValueRange(apiPointValueQueryDTO1); |
| | | if (maxV != null && maxV.containsKey(pointNo)) { |
| | | powerHistoryDTO.setMax(new BigDecimal(maxV.get(pointNo).toString())); |
| | | } |
| | |
| | | |
| | | @PostMapping("/power-maxdemand/det-list") |
| | | @Operation(summary = "负荷移植-最大需量发生记录详情") |
| | | public CommonResult<List<PowerMaxdemandDetDTO>> getPowerMaxDemandDetList(@RequestParam Map<String, Object> params) { |
| | | public CommonResult<List<PowerMaxdemandDetDTO>> getPowerMaxDemandDetList(@RequestBody Map<String, Object> params) { |
| | | String relId = (String) params.get("relId"); |
| | | if (StringUtils.isBlank(relId)) { |
| | | return error(GlobalErrorCodeConstants.BAD_REQUEST); |
| | |
| | | List<PowerMaxdemandDetEntity> list = powerMaxdemandDetService.selectListByRelId(relId); |
| | | return success(ConvertUtils.sourceToTarget(list, PowerMaxdemandDetDTO.class)); |
| | | } |
| | | |
| | | @GetMapping("/power-price/list") |
| | | @Operation(summary = "获取峰谷平电价信息") |
| | | public CommonResult<List<PowerPriceMainDTO>> getPowerPriceList(@RequestParam Map<String, Object> params) { |
| | | List<PowerPriceMainDTO> result = powerPriceMainService.list(params); |
| | | return success(result); |
| | | } |
| | | |
| | | @PostMapping("/power-price/save") |
| | | @Operation(summary = "保存峰谷平电价信息") |
| | | public CommonResult<Boolean> savePowerPriceList(@RequestBody PowerPriceMainDTO mainDTO) { |
| | | return success(powerPriceMainService.save(mainDTO)); |
| | | } |
| | | } |