|
@@ -51,13 +51,14 @@ public class TJCallbackController {
|
|
|
@RequestParam("reportid") String reportid,
|
|
|
@RequestParam("date") String tjdate,
|
|
|
@RequestParam("position") String position,
|
|
|
- @RequestParam("remark") String remark
|
|
|
+ @RequestParam("remark") String remark,
|
|
|
+ @RequestParam("patientId") String patientId
|
|
|
){
|
|
|
List<String> uids = familyPeopleService.queryPeopleByPhone(phone);
|
|
|
if (uids.isEmpty()){
|
|
|
return new ControllerResult(Boolean.FALSE);
|
|
|
}
|
|
|
- userCenterService.pushReportMsg(uids, title, name, reportid, tjdate, position, remark);
|
|
|
+ userCenterService.pushReportMsg(uids, title, name, reportid, tjdate, position, remark, patientId);
|
|
|
return new ControllerResult(Boolean.TRUE);
|
|
|
}
|
|
|
}
|