Compare commits
No commits in common. "5c720b68b7497d023616f99e954e4286f67bac34" and "d938d659a461e2a450080a0beb32de32135da8d4" have entirely different histories.
5c720b68b7
...
d938d659a4
|
@ -28,39 +28,15 @@ public class IndexDataController {
|
|||
private IndexService indexService;
|
||||
|
||||
|
||||
/**
|
||||
* 待办工单列表
|
||||
* @param pager
|
||||
* @param requestContext
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/doneWorkOrder")
|
||||
@Operation(summary = "待办工单列表")
|
||||
public GeneralResult doneWorkOrder(Pager pager, @Value(Common.REQ_CONTEXT) RequestContext requestContext) {
|
||||
return indexService.doneWorkOrder(pager, requestContext);
|
||||
}
|
||||
|
||||
/**
|
||||
* 工单统计
|
||||
* @param pager
|
||||
* @param requestContext
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/workOrder/stattic")
|
||||
@Operation(summary = "工单统计")
|
||||
@Operation(summary = "待办工单列表")
|
||||
public GeneralResult workOrderStatic(Pager pager, @Value(Common.REQ_CONTEXT) RequestContext requestContext) {
|
||||
return indexService.workOrderStatic(requestContext);
|
||||
}
|
||||
|
||||
/**
|
||||
* 当前用户首页数据展示模块的数据查询
|
||||
* @param pager
|
||||
* @param requestContext
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/userData/stattic")
|
||||
@Operation(summary = "当前用户首页数据展示模块的数据查询")
|
||||
public GeneralResult userStatic(Pager pager, @Value(Common.REQ_CONTEXT) RequestContext requestContext) {
|
||||
return indexService.userDataStatic(requestContext);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,4 @@ public interface IndexService {
|
|||
GeneralResult doneWorkOrder(Pager pager, RequestContext requestContext);
|
||||
|
||||
GeneralResult workOrderStatic(RequestContext requestContext);
|
||||
|
||||
GeneralResult userDataStatic(RequestContext requestContext);
|
||||
}
|
||||
|
|
|
@ -80,26 +80,4 @@ public class IndexServiceImpl implements IndexService {
|
|||
return new GeneralResult(false, "查询失败");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public GeneralResult userDataStatic(RequestContext requestContext) {
|
||||
try {
|
||||
//查询当前用户授权应用
|
||||
JSONObject param = new JSONObject();
|
||||
param.put("userId", "1111");
|
||||
param.put("type", "user");
|
||||
String result = ykUtil.call(YkInfo.getUserAppList, param, JSONArray.class);
|
||||
|
||||
//获取用户信息
|
||||
JSONObject userParam = new JSONObject();
|
||||
param.put("userParam", "1111");
|
||||
String userRolesStr = ykUtil.call(YkInfo.getUserRoles, param, JSONArray.class);
|
||||
|
||||
|
||||
return new GeneralResult(true, "查询成功");
|
||||
} catch (Exception e) {
|
||||
log.info("查询失败", e);
|
||||
return new GeneralResult(false, "查询失败");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue