|
@@ -35,8 +35,8 @@ public class DataTask implements ITask {
|
|
|
if (record.getStr("impression") == null && record.getStr("description") == null) {
|
|
|
continue;
|
|
|
}
|
|
|
- report.setImpression(record.getStr("impression"));
|
|
|
- report.setDescription(record.getStr("description"));
|
|
|
+ report.setImpression(record.getStr("description"));
|
|
|
+ report.setDescription(record.getStr("impression"));
|
|
|
report.setExamId(exams2.getId());
|
|
|
report.setCreatedAt(new Date());
|
|
|
report.setReportDoctorId(getDoctorIdByName(record.getStr("reportdoctor")));
|
|
@@ -70,7 +70,7 @@ public class DataTask implements ITask {
|
|
|
|
|
|
private String creatId() {
|
|
|
UUID id=UUID.randomUUID();
|
|
|
- String[] idd=id.toString().split("-");
|
|
|
+ String[] idd = id.toString().split("-");
|
|
|
return idd[0]+idd[1]+idd[2];
|
|
|
}
|
|
|
|