|
@ -175,6 +175,7 @@ public class SynergyManagerController extends BaseController{
|
|
|
// Map<String, String> response = followUpService.getFollowupProjectData(id, followupProject);
|
|
|
//修改为通过ES查询---2017.11.01--huangwenjie
|
|
|
Map<String, String> response = followUpService.getFollowup(id);
|
|
|
Map<String,Object> followupDrugs = followupDrugsService.getFollowupDrugs(id);
|
|
|
JSONArray array = JSON.parseArray(followupProject);
|
|
|
List<FollowupContentESDO> followupContentESDOS = new ArrayList<>();
|
|
|
for (int i =0;i<array.size();i++){
|
|
@ -183,6 +184,7 @@ public class SynergyManagerController extends BaseController{
|
|
|
}
|
|
|
JSONObject object = new JSONObject();
|
|
|
object.put("followup",response);
|
|
|
object.put("followupDrugs",followupDrugs);
|
|
|
object.put("followupContent",followupContentESDOS);
|
|
|
return write(200, "获取随访项目数据成功!", "data", object);
|
|
|
} catch (Exception e) {
|
|
@ -300,8 +302,8 @@ public class SynergyManagerController extends BaseController{
|
|
|
@RequestParam(value = "message",required = true)String message,
|
|
|
@ApiParam(name = "hospital",value = "医院code",required = false)
|
|
|
@RequestParam(value = "hospital",required = false)String hospital,
|
|
|
@ApiParam(name = "patient",value = "居民code",required = true)
|
|
|
@RequestParam(value = "patient",required = true)String patient,
|
|
|
@ApiParam(name = "patient",value = "居民code",required = false)
|
|
|
@RequestParam(value = "patient",required = false)String patient,
|
|
|
@ApiParam(name = "time",value = "时间",required = false)
|
|
|
@RequestParam(value = "time",required = false)Integer time,
|
|
|
@ApiParam(name = "jsonObject",value = "参数",required = false)
|