Ejemplo n.º 1
0
 /**
  * 查询工单
  *
  * @return
  * @throws Exception
  */
 public String queryTasks() throws Exception {
   if (taskCond == null) {
     return JSON_PAGE;
   }
   taskCond.setStart(start);
   taskCond.setLimit(limit);
   getRoot().setPage(taskService.queryTask(taskCond));
   return JSON_PAGE;
 }