Commit 2f69c6aa authored by Quxl's avatar Quxl

x

parent 8e4e0a8f
...@@ -217,8 +217,7 @@ public class AdminReviewController { ...@@ -217,8 +217,7 @@ public class AdminReviewController {
}) })
public Object getReviewRecord(Integer record_id) { public Object getReviewRecord(Integer record_id) {
Map<String, Object> recordMap = reviewService.queryReviewRecordMapById(record_id); Map<String, Object> recordMap = reviewService.queryReviewRecordMapById(record_id);
Fc_review_record record = Util.mapTo(recordMap, Fc_review_record.class); List<Fc_review_record_ext> extList = reviewService.queryReviewRecordExtList((Integer)recordMap.get("id"));
List<Fc_review_record_ext> extList = reviewService.queryReviewRecordExtList(record.getId());
return Rjx.jsonOk().setData(recordMap).set("exts", extList); return Rjx.jsonOk().setData(recordMap).set("exts", extList);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment