|
@@ -333,6 +333,8 @@ public class ChenYuTestScheduled {
|
|
|
|
|
|
List<TrialCyFinishTestReport> reports = data.toJavaList(TrialCyFinishTestReport.class);
|
|
|
for (TrialCyFinishTestReport report : reports) {
|
|
|
+ //数据太长且不需要
|
|
|
+ report.setTestParamInfo(null);
|
|
|
Long id = SnowFlakeUtil.getId();
|
|
|
report.setId(id);
|
|
|
report.setContractId(contractId);
|
|
@@ -475,7 +477,9 @@ public class ChenYuTestScheduled {
|
|
|
|
|
|
List<TrialCyThirdReport> reports = data.toJavaList(TrialCyThirdReport.class);
|
|
|
for (TrialCyThirdReport report : reports) {
|
|
|
-
|
|
|
+ //数据太长 忽略
|
|
|
+ report.setTestStandard(null);
|
|
|
+ report.setTestConclusion(null);
|
|
|
List<String> urls = new ArrayList<>();
|
|
|
if (StringUtil.isNotBlank(report.getReportDocFilePath())) {
|
|
|
urls.add(report.getReportDocFilePath());
|