|
@@ -6,23 +6,21 @@ import cn.hutool.core.date.DateUtil;
|
|
import cn.hutool.core.date.LocalDateTimeUtil;
|
|
import cn.hutool.core.date.LocalDateTimeUtil;
|
|
import cn.hutool.core.util.StrUtil;
|
|
import cn.hutool.core.util.StrUtil;
|
|
import com.jiayue.insu.inclientqn.constant.CommonStant;
|
|
import com.jiayue.insu.inclientqn.constant.CommonStant;
|
|
|
|
+import com.jiayue.insu.inclientqn.constant.TemplateStant;
|
|
import com.jiayue.insu.inclientqn.entity.BackForeForecastData;
|
|
import com.jiayue.insu.inclientqn.entity.BackForeForecastData;
|
|
import com.jiayue.insu.inclientqn.entity.BackForeUsForecastData;
|
|
import com.jiayue.insu.inclientqn.entity.BackForeUsForecastData;
|
|
import com.jiayue.insu.inclientqn.entity.BackStatData;
|
|
import com.jiayue.insu.inclientqn.entity.BackStatData;
|
|
import com.jiayue.insu.inclientqn.inenum.ElectricFieldTypeEnum;
|
|
import com.jiayue.insu.inclientqn.inenum.ElectricFieldTypeEnum;
|
|
import com.jiayue.insu.inclientqn.inenum.QNHLEnum;
|
|
import com.jiayue.insu.inclientqn.inenum.QNHLEnum;
|
|
import com.jiayue.insu.inclientqn.model.RequestVo;
|
|
import com.jiayue.insu.inclientqn.model.RequestVo;
|
|
-import com.jiayue.insu.inclientqn.service.BackStatDataService;
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
|
import java.util.Collections;
|
|
import java.util.Collections;
|
|
import java.util.Comparator;
|
|
import java.util.Comparator;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -37,11 +35,6 @@ import java.util.stream.Collectors;
|
|
@RefreshScope
|
|
@RefreshScope
|
|
public class BackDataGenService {
|
|
public class BackDataGenService {
|
|
|
|
|
|
- private String headerTemplate = "<! Entity={} time='{}' !>" + CommonStant.LINE_CONSTANT;
|
|
|
|
-
|
|
|
|
- private final BackStatDataService backStatDataService;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 生成回传实际功率
|
|
* 生成回传实际功率
|
|
*
|
|
*
|
|
@@ -55,15 +48,15 @@ public class BackDataGenService {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas) && backStatDatas.get(0).getRealPower() != null) {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas) && backStatDatas.get(0).getRealPower() != null) {
|
|
StringBuilder content = new StringBuilder();
|
|
StringBuilder content = new StringBuilder();
|
|
|
|
|
|
- String header = StrUtil.format(headerTemplate, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
- String labelStart = StrUtil.format("<{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_RealPower.getCode());
|
|
|
|
- String labelEnd = StrUtil.format("</{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_RealPower.getCode());
|
|
|
|
- String title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE2_CONSTANT + "实发功率值" + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String header = StrUtil.format(TemplateStant.HEADER_TEMPLATE, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
+ String labelStart = TemplateStant.GEN_LABELSTART( QNHLEnum.DATA_STAT_TYPE_RealPower.getCode());
|
|
|
|
+ String labelEnd = TemplateStant.GEN_LABELEND( QNHLEnum.DATA_STAT_TYPE_RealPower.getCode());
|
|
|
|
+ String title = TemplateStant.BACK_STAT_REAL_POWER_TITLE;
|
|
content.append(header);
|
|
content.append(header);
|
|
content.append(labelStart);
|
|
content.append(labelStart);
|
|
content.append(title);
|
|
content.append(title);
|
|
|
|
|
|
- String template = "# 1" + CommonStant.SPACE2_CONSTANT + "{}" + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String template = TemplateStant.BACK_STAT_REAL_POWER_TEMPLATE;
|
|
|
|
|
|
String dataContent = StrUtil.format(template, backStatDatas.get(0).getRealPower().toString());
|
|
String dataContent = StrUtil.format(template, backStatDatas.get(0).getRealPower().toString());
|
|
|
|
|
|
@@ -92,9 +85,9 @@ public class BackDataGenService {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas)) {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas)) {
|
|
StringBuilder content = new StringBuilder();
|
|
StringBuilder content = new StringBuilder();
|
|
|
|
|
|
- String header = StrUtil.format(headerTemplate, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
- String labelStart = StrUtil.format("<{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_RealWeather.getCode());
|
|
|
|
- String labelEnd = StrUtil.format("</{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_RealWeather.getCode());
|
|
|
|
|
|
+ String header = StrUtil.format(TemplateStant.HEADER_TEMPLATE, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
+ String labelStart = TemplateStant.GEN_LABELSTART( QNHLEnum.DATA_STAT_TYPE_RealWeather.getCode());
|
|
|
|
+ String labelEnd = TemplateStant.GEN_LABELEND( QNHLEnum.DATA_STAT_TYPE_RealWeather.getCode());
|
|
content.append(header);
|
|
content.append(header);
|
|
content.append(labelStart);
|
|
content.append(labelStart);
|
|
String title = "";
|
|
String title = "";
|
|
@@ -103,28 +96,16 @@ public class BackDataGenService {
|
|
BackStatData backStatData = backStatDatas.get(0);
|
|
BackStatData backStatData = backStatDatas.get(0);
|
|
|
|
|
|
if (stationType.equals(ElectricFieldTypeEnum.E2.name())) {
|
|
if (stationType.equals(ElectricFieldTypeEnum.E2.name())) {
|
|
- title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE4_CONSTANT + "风速" + CommonStant.SPACE4_CONSTANT + "风向"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "温度" + CommonStant.SPACE4_CONSTANT + "湿度" + CommonStant.SPACE4_CONSTANT + "气压"
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
-
|
|
|
|
- template = "# 1" + CommonStant.SPACE1_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT
|
|
|
|
- + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
|
|
|
|
+ title = TemplateStant.BACK_STAT_REAL_WEATHER_TITLE_E2;
|
|
|
|
+ template = TemplateStant.BACK_STAT_REAL_WEATHER_TEMPLATE_E2;
|
|
dataContent = StrUtil.format(template, backStatData.getWs().toString(), backStatData.getWd().toString()
|
|
dataContent = StrUtil.format(template, backStatData.getWs().toString(), backStatData.getWd().toString()
|
|
, backStatData.getTemperature().toString(), backStatData.getHumidity().toString(), backStatData.getPressure().toString());
|
|
, backStatData.getTemperature().toString(), backStatData.getHumidity().toString(), backStatData.getPressure().toString());
|
|
|
|
|
|
} else {
|
|
} else {
|
|
- title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE4_CONSTANT + "总辐照度" + CommonStant.SPACE4_CONSTANT + "直射辐照度"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "散射辐照度" + CommonStant.SPACE4_CONSTANT + "温度" + CommonStant.SPACE4_CONSTANT + "光伏板温度"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "湿度" + CommonStant.SPACE4_CONSTANT + "气压" + CommonStant.SPACE4_CONSTANT + "风速" + CommonStant.SPACE4_CONSTANT + "风向"
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
-
|
|
|
|
- template = "# 1" + CommonStant.SPACE1_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT
|
|
|
|
- + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT
|
|
|
|
- + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT
|
|
|
|
- + "{}" + CommonStant.SPACE4_CONSTANT + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
|
|
|
|
+ title = TemplateStant.BACK_STAT_REAL_WEATHER_TITLE_E1;
|
|
|
|
+ template = TemplateStant.BACK_STAT_REAL_WEATHER_TEMPLATE_E1;
|
|
dataContent = StrUtil.format(template, backStatData.getGlobalR().toString(), backStatData.getDirectR().toString()
|
|
dataContent = StrUtil.format(template, backStatData.getGlobalR().toString(), backStatData.getDirectR().toString()
|
|
, backStatData.getDiffuseR().toString(), backStatData.getTemperature().toString(), backStatData.getCellT().toString(),
|
|
, backStatData.getDiffuseR().toString(), backStatData.getTemperature().toString(), backStatData.getCellT().toString(),
|
|
backStatData.getHumidity().toString(), backStatData.getPressure().toString(), backStatData.getWs().toString(), backStatData.getWd().toString()
|
|
backStatData.getHumidity().toString(), backStatData.getPressure().toString(), backStatData.getWs().toString(), backStatData.getWd().toString()
|
|
@@ -158,15 +139,16 @@ public class BackDataGenService {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas) && backStatDatas.get(0).getReportStateForecast() != null) {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas) && backStatDatas.get(0).getReportStateForecast() != null) {
|
|
StringBuilder content = new StringBuilder();
|
|
StringBuilder content = new StringBuilder();
|
|
|
|
|
|
- String header = StrUtil.format(headerTemplate, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
- String labelStart = StrUtil.format("<{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_ForecastPowerReport.getCode());
|
|
|
|
- String labelEnd = StrUtil.format("</{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_ForecastPowerReport.getCode());
|
|
|
|
- String title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE2_CONSTANT + "上报" + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String header = StrUtil.format(TemplateStant.HEADER_TEMPLATE, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
+ String labelStart = TemplateStant.GEN_LABELSTART( QNHLEnum.DATA_STAT_TYPE_ForecastPowerReport.getCode());
|
|
|
|
+ String labelEnd = TemplateStant.GEN_LABELEND( QNHLEnum.DATA_STAT_TYPE_ForecastPowerReport.getCode());
|
|
|
|
+ String title = TemplateStant.BACK_FORE_FORECAST_TITLE_REPORT;
|
|
|
|
+
|
|
content.append(header);
|
|
content.append(header);
|
|
content.append(labelStart);
|
|
content.append(labelStart);
|
|
content.append(title);
|
|
content.append(title);
|
|
|
|
|
|
- String template = "# 1" + CommonStant.SPACE2_CONSTANT + "{}" + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String template = TemplateStant.BACK_FORE_FORECAST_TEMPLATE_REPORT;
|
|
|
|
|
|
String dataContent = StrUtil.format(template, backStatDatas.get(0).getReportStateForecast().toString());
|
|
String dataContent = StrUtil.format(template, backStatDatas.get(0).getReportStateForecast().toString());
|
|
|
|
|
|
@@ -194,15 +176,16 @@ public class BackDataGenService {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas) && backStatDatas.get(0).getReportStateForecastshort() != null) {
|
|
if (CollectionUtil.isNotEmpty(backStatDatas) && backStatDatas.get(0).getReportStateForecastshort() != null) {
|
|
StringBuilder content = new StringBuilder();
|
|
StringBuilder content = new StringBuilder();
|
|
|
|
|
|
- String header = StrUtil.format(headerTemplate, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
- String labelStart = StrUtil.format("<{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
- String labelEnd = StrUtil.format("</{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
- String title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE2_CONSTANT + "上报" + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String header = StrUtil.format(TemplateStant.HEADER_TEMPLATE, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
+ String labelStart = TemplateStant.GEN_LABELSTART( QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
+ String labelEnd = TemplateStant.GEN_LABELEND( QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
+ String title = TemplateStant.BACK_FORE_US_FORECAST_TITLE_REPORT;
|
|
|
|
+
|
|
content.append(header);
|
|
content.append(header);
|
|
content.append(labelStart);
|
|
content.append(labelStart);
|
|
content.append(title);
|
|
content.append(title);
|
|
|
|
|
|
- String template = "# 1" + CommonStant.SPACE2_CONSTANT + "{}" + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String template = TemplateStant.BACK_FORE_US_FORECAST_TITLE_TEMPLATE;
|
|
|
|
|
|
String dataContent = StrUtil.format(template, backStatDatas.get(0).getReportStateForecastshort().toString());
|
|
String dataContent = StrUtil.format(template, backStatDatas.get(0).getReportStateForecastshort().toString());
|
|
|
|
|
|
@@ -217,7 +200,7 @@ public class BackDataGenService {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- public RequestVo genForeUltraShortTermForecast(String el, long signTime, List<BackForeUsForecastData> backForeUsForecastDatas) throws Exception {
|
|
|
|
|
|
+ public RequestVo genForeUltraShortTermForecast(String el, String stationType, long signTime, List<BackForeUsForecastData> backForeUsForecastDatas) throws Exception {
|
|
|
|
|
|
RequestVo requestVo = null;
|
|
RequestVo requestVo = null;
|
|
|
|
|
|
@@ -225,20 +208,28 @@ public class BackDataGenService {
|
|
|
|
|
|
Collections.sort(backForeUsForecastDatas, Comparator.comparing(BackForeUsForecastData::getForecastTime));
|
|
Collections.sort(backForeUsForecastDatas, Comparator.comparing(BackForeUsForecastData::getForecastTime));
|
|
StringBuilder content = new StringBuilder();
|
|
StringBuilder content = new StringBuilder();
|
|
- String header = StrUtil.format(headerTemplate, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
- String labelStart = StrUtil.format("<{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
- String labelEnd = StrUtil.format("</{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
- String title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE4_CONSTANT + "时间"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "功率预测" + CommonStant.SPACE4_CONSTANT + "预计开机容量" + CommonStant.SPACE4_CONSTANT + "风速"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "风向" + CommonStant.SPACE4_CONSTANT + "温度" + CommonStant.SPACE4_CONSTANT + "湿度" + CommonStant.SPACE4_CONSTANT + "气压"
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String header = StrUtil.format(TemplateStant.HEADER_TEMPLATE, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
+ String labelStart = TemplateStant.GEN_LABELSTART( QNHLEnum.DATA_FORE_TYPE_UltraShortTermForecast.getCode());
|
|
|
|
+ String labelEnd = TemplateStant.GEN_LABELEND( QNHLEnum.DATA_FORE_TYPE_UltraShortTermForecast.getCode());
|
|
|
|
+
|
|
|
|
+ String title = "";
|
|
|
|
+ String template = "";
|
|
|
|
+
|
|
content.append(header);
|
|
content.append(header);
|
|
content.append(labelStart);
|
|
content.append(labelStart);
|
|
- content.append(title);
|
|
|
|
|
|
|
|
- String template = "# {}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "null"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "null" + CommonStant.SPACE4_CONSTANT + "null" + CommonStant.SPACE4_CONSTANT + "null" + CommonStant.SPACE4_CONSTANT + "null"
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+
|
|
|
|
+ if (stationType.equals(ElectricFieldTypeEnum.E2.name())) {
|
|
|
|
+ title = TemplateStant.BACK_FORE_US_FORECAST_TITLE_E2;
|
|
|
|
+ template = TemplateStant.BACK_FORE_US_FORECAST_TEMPLATE_E2;
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ title = TemplateStant.BACK_FORE_US_FORECAST_TITLE_E1;
|
|
|
|
+ template = TemplateStant.BACK_FORE_US_FORECAST_TEMPLATE_E1;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ content.append(title);
|
|
|
|
|
|
for (int i = 0; i < backForeUsForecastDatas.size(); i++) {
|
|
for (int i = 0; i < backForeUsForecastDatas.size(); i++) {
|
|
|
|
|
|
@@ -271,18 +262,16 @@ public class BackDataGenService {
|
|
if (checkDate) {
|
|
if (checkDate) {
|
|
Collections.sort(backForeForecastDatas, Comparator.comparing(BackForeForecastData::getForecastTime));
|
|
Collections.sort(backForeForecastDatas, Comparator.comparing(BackForeForecastData::getForecastTime));
|
|
StringBuilder content = new StringBuilder();
|
|
StringBuilder content = new StringBuilder();
|
|
- String header = StrUtil.format(headerTemplate, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
- String labelStart = StrUtil.format("<{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
- String labelEnd = StrUtil.format("</{}>" + CommonStant.LINE_CONSTANT, QNHLEnum.DATA_STAT_TYPE_UltraShortTermForecastReport.getCode());
|
|
|
|
- String title = "@" + CommonStant.SPACE1_CONSTANT + "序号" + CommonStant.SPACE4_CONSTANT + "时间"
|
|
|
|
- + CommonStant.SPACE4_CONSTANT + "功率预测" + CommonStant.SPACE4_CONSTANT + "预计开机容量"
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String header = StrUtil.format(TemplateStant.HEADER_TEMPLATE, el, DateUtil.parse(DateUtil.now()).toString("yyyy-MM-dd HH:mm:ss"));
|
|
|
|
+ String labelStart = TemplateStant.GEN_LABELSTART( QNHLEnum.DATA_FORE_TYPE_ForecastPower.getCode());
|
|
|
|
+ String labelEnd = TemplateStant.GEN_LABELEND( QNHLEnum.DATA_FORE_TYPE_ForecastPower.getCode());
|
|
|
|
+
|
|
|
|
+ String title = TemplateStant.BACK_FORE_FORECAST_TITLE;
|
|
content.append(header);
|
|
content.append(header);
|
|
content.append(labelStart);
|
|
content.append(labelStart);
|
|
content.append(title);
|
|
content.append(title);
|
|
|
|
|
|
- String template = "# {}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}" + CommonStant.SPACE4_CONSTANT + "{}"
|
|
|
|
- + CommonStant.LINE_CONSTANT;
|
|
|
|
|
|
+ String template = TemplateStant.BACK_FORE_FORECAST_TEMPLATE;
|
|
|
|
|
|
for (int i = 0; i < backForeForecastDatas.size(); i++) {
|
|
for (int i = 0; i < backForeForecastDatas.size(); i++) {
|
|
|
|
|
|
@@ -298,7 +287,6 @@ public class BackDataGenService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
return requestVo;
|
|
return requestVo;
|
|
}
|
|
}
|
|
|
|
|