|
@@ -3,12 +3,22 @@ package com.gyee.backconfig.service.auto.impl;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.gyee.backconfig.model.auto.ProBasicPowerstationPoint;
|
|
|
import com.gyee.backconfig.model.auto.ProBasicTargetPlan;
|
|
|
import com.gyee.backconfig.mapper.auto.ProBasicTargetPlanMapper;
|
|
|
+import com.gyee.backconfig.service.auto.IProBasicPowerstationPointService;
|
|
|
import com.gyee.backconfig.service.auto.IProBasicTargetPlanService;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.gyee.backconfig.until.realtimedate.EdosUtil;
|
|
|
+import com.gyee.common.model.PointData;
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
+import com.gyee.common.util.DateUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -21,6 +31,12 @@ import org.springframework.stereotype.Service;
|
|
|
@Service
|
|
|
public class ProBasicTargetPlanServiceImpl extends ServiceImpl<ProBasicTargetPlanMapper, ProBasicTargetPlan> implements IProBasicTargetPlanService {
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IProBasicPowerstationPointService proBasicPowerstationPointService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private EdosUtil goldenUtil;
|
|
|
+
|
|
|
@Override
|
|
|
public IPage<ProBasicTargetPlan> list(String id, String companyCode, String targetCode, String targetDate, String pageNum, String pageSize) {
|
|
|
QueryWrapper<ProBasicTargetPlan> qw = new QueryWrapper<>();
|
|
@@ -43,4 +59,26 @@ public class ProBasicTargetPlanServiceImpl extends ServiceImpl<ProBasicTargetPla
|
|
|
IPage<ProBasicTargetPlan> targetPlans = getBaseMapper().selectPage(page, qw);
|
|
|
return targetPlans;
|
|
|
}
|
|
|
+
|
|
|
+ @Transactional
|
|
|
+ @Override
|
|
|
+ public boolean addOrUpdate(ProBasicTargetPlan proBasicTargetPlan) throws Exception{
|
|
|
+
|
|
|
+ this.saveOrUpdate(proBasicTargetPlan);
|
|
|
+ List<ProBasicPowerstationPoint> stationlist = proBasicPowerstationPointService.getStationpointByUniformcode(proBasicTargetPlan.getCompanyCode(), proBasicTargetPlan.getTargetCode());
|
|
|
+
|
|
|
+ if (null == stationlist || stationlist.size() <= 0) {
|
|
|
+ throw new RuntimeException();
|
|
|
+ }
|
|
|
+ PointData point = new PointData();
|
|
|
+ point.setEdnaId(stationlist.get(0).getNemCode());
|
|
|
+ Date date = DateUtils.parseDate1(proBasicTargetPlan.getTargetDate());
|
|
|
+ point.setPointTime(date.getTime());
|
|
|
+ point.setPointValueInDouble(Double.valueOf(proBasicTargetPlan.getTargetValue()));
|
|
|
+ goldenUtil.sendSinglePoint(point);
|
|
|
+ return true;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|