|
@@ -20,7 +20,7 @@ public class ReviewTask implements ITask {
|
|
|
public void run() {
|
|
|
// TODO Auto-generated method stub
|
|
|
DataService dService = ServiceFactory.getService(DataService.class);
|
|
|
- List<Record> records = Db.use("connected").find("select top 50 * from reportinfo order by UpDateTime desc");
|
|
|
+ List<Record> records = Db.use("connected").find("select top 100 * from reportinfo order by UpDateTime desc");
|
|
|
for (Record record : records) {
|
|
|
try {
|
|
|
if (record == null) {
|
|
@@ -35,7 +35,7 @@ public class ReviewTask implements ITask {
|
|
|
|
|
|
params.put("institution_id", PropKit.get("institution_id"));
|
|
|
|
|
|
- params.put("code", record.getStr("studyuid"));
|
|
|
+ params.put("code", record.getStr("StudyInsUid"));
|
|
|
//报告医生姓名
|
|
|
params.put("report_doctor_name", record.getStr("ReportDoctor"));
|
|
|
//报告时间
|