Commit 667d3fc7 authored by maqing's avatar maqing

日常生活活动能力查询

parent 42b4a489
......@@ -634,8 +634,11 @@ public class TaskController {
*/
@RequestMapping(value= "/chIpad/taskReportFractionDtlQueryList")
@ResponseBody
public List<ChTaskReportFractionDtl> taskReportFractionDtlQueryList() throws Exception {
public Result taskReportFractionDtlQueryList() throws Exception {
List<ChTaskReportFractionDtl> resultList= taskService.taskReportFractionDtlQueryList();
return resultList;
if (resultList.size() >0) {
return Result.success(resultList);
}
return Result.failed("没有查到日常生活活动能力数据");
}
}
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