|
|
@@ -1,7 +1,9 @@
|
|
|
package com.railway.business.bi.service.impl;
|
|
|
|
|
|
-import com.railway.business.bi.domain.vo.ChartVO;
|
|
|
+import com.railway.business.bi.domain.vo.ChartMsgVO;
|
|
|
import com.railway.business.bi.service.IDetailService;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
@@ -17,44 +19,94 @@ import org.springframework.stereotype.Service;
|
|
|
@Service
|
|
|
public class DetailServiceImpl implements IDetailService {
|
|
|
|
|
|
- /**
|
|
|
- * 获取检修本月兑现情况描述
|
|
|
- *
|
|
|
- * @return 图表数据对象
|
|
|
- */
|
|
|
- @Override
|
|
|
- public ChartVO getChartJxdxqkbyDetail() {
|
|
|
- return null;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 获取检修本月兑现情况描述
|
|
|
+ *
|
|
|
+ * @return 图表数据对象
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public ChartMsgVO getChartJxdxqkbyDetail() {
|
|
|
+ ChartMsgVO chartMsg = new ChartMsgVO();
|
|
|
+ chartMsg.setByywc(4);
|
|
|
+ chartMsg.setBywwc(3);
|
|
|
+ chartMsg.setXyjhwc(0);
|
|
|
+ chartMsg.setNdsys(0);
|
|
|
+ List<String> wwcmx = new ArrayList<>();
|
|
|
+ wwcmx.add("长春西牵引变电所");
|
|
|
+ wwcmx.add("英安河AT所");
|
|
|
+ wwcmx.add("珲春分区所");
|
|
|
+ chartMsg.setWwcmx(wwcmx);
|
|
|
+ return chartMsg;
|
|
|
+ }
|
|
|
|
|
|
- /**
|
|
|
- * 获取电力远动调试本月兑现情况描述
|
|
|
- *
|
|
|
- * @return 图表数据对象
|
|
|
- */
|
|
|
- @Override
|
|
|
- public ChartVO getChartDlydtsbyDetail() {
|
|
|
- return null;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 获取电力远动调试本月兑现情况描述
|
|
|
+ *
|
|
|
+ * @return 图表数据对象
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public ChartMsgVO getChartDlydtsbyDetail() {
|
|
|
+ ChartMsgVO chartMsg = new ChartMsgVO();
|
|
|
+ chartMsg.setByywc(4);
|
|
|
+ chartMsg.setBywwc(8);
|
|
|
+ chartMsg.setXyjhwc(0);
|
|
|
+ chartMsg.setNdsys(0);
|
|
|
+ List<String> wwcmx = new ArrayList<>();
|
|
|
+ wwcmx.add("吉蛟03号箱变(吉林隧道)");
|
|
|
+ wwcmx.add("吉蛟13号箱变(吉林隧道)");
|
|
|
+ wwcmx.add("吉蛟12号箱变(草木沟隧道)");
|
|
|
+ wwcmx.add("吉蛟33号箱变(草木沟隧道)");
|
|
|
+ wwcmx.add("吉蛟56号箱变(草木沟隧道)");
|
|
|
+ wwcmx.add("吉蛟20号箱变(拉法山隧道)");
|
|
|
+ wwcmx.add("吉蛟21号箱变(拉法山隧道)");
|
|
|
+ wwcmx.add("吉蛟22号箱变(拉法山隧道)");
|
|
|
+ chartMsg.setWwcmx(wwcmx);
|
|
|
+ return chartMsg;
|
|
|
+ }
|
|
|
|
|
|
- /**
|
|
|
- * 获取电力受电线路本月兑现情况描述
|
|
|
- *
|
|
|
- * @return 图表数据对象
|
|
|
- */
|
|
|
- @Override
|
|
|
- public ChartVO getChartDlsdxlbyDetail() {
|
|
|
- return null;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 获取电力受电线路本月兑现情况描述
|
|
|
+ *
|
|
|
+ * @return 图表数据对象
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public ChartMsgVO getChartDlsdxlbyDetail() {
|
|
|
+ ChartMsgVO chartMsg = new ChartMsgVO();
|
|
|
+ chartMsg.setByywc(0);
|
|
|
+ chartMsg.setBywwc(7);
|
|
|
+ chartMsg.setXyjhwc(12);
|
|
|
+ chartMsg.setNdsys(12);
|
|
|
+ List<String> wwcmx = new ArrayList<>();
|
|
|
+ wwcmx.add("四平东10KV配电所(一面城线)");
|
|
|
+ wwcmx.add("公主岭南10KV配电所(岭南线)");
|
|
|
+ wwcmx.add("龙嘉10KV配电所(东湖)");
|
|
|
+ wwcmx.add("安图西10KV配电所");
|
|
|
+ wwcmx.add("长春10KV配电所");
|
|
|
+ wwcmx.add("图门北10KV配电所");
|
|
|
+ wwcmx.add("双击10KV配电所");
|
|
|
+ chartMsg.setWwcmx(wwcmx);
|
|
|
+ return chartMsg;
|
|
|
+ }
|
|
|
|
|
|
- /**
|
|
|
- * 获取电力变配电所本月兑现情况描述
|
|
|
- *
|
|
|
- * @return 图表数据对象
|
|
|
- */
|
|
|
- @Override
|
|
|
- public ChartVO getChartDlbpdsbyDetail() {
|
|
|
- return null;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 获取电力变配电所本月兑现情况描述
|
|
|
+ *
|
|
|
+ * @return 图表数据对象
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public ChartMsgVO getChartDlbpdsbyDetail() {
|
|
|
+ ChartMsgVO chartMsg = new ChartMsgVO();
|
|
|
+ chartMsg.setByywc(0);
|
|
|
+ chartMsg.setBywwc(4);
|
|
|
+ chartMsg.setXyjhwc(0);
|
|
|
+ chartMsg.setNdsys(0);
|
|
|
+ List<String> wwcmx = new ArrayList<>();
|
|
|
+ wwcmx.add("长春西动车所1号10kV配电所");
|
|
|
+ wwcmx.add("长春西动车所2号10kV配电所");
|
|
|
+ wwcmx.add("长白山动车库配电所");
|
|
|
+ wwcmx.add("扶余北10kV配电所");
|
|
|
+ chartMsg.setWwcmx(wwcmx);
|
|
|
+ return chartMsg;
|
|
|
+ }
|
|
|
|
|
|
}
|