Commit bee058e257fd435a441de535ad94c73c6ff7309d

Authored by yangfei
1 parent faf9fac7ed

追访

Showing 1 changed file with 4 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java View file @ bee058e
... ... @@ -868,7 +868,8 @@
868 868 *
869 869 * @return
870 870 */
871   - public Map<String, Object> xcxSieveApplyInfo(String formDataStr) {
  871 + public BaseResponse xcxSieveApplyInfo(String formDataStr) {
  872 + BaseResponse baseResponse = new BaseResponse();
872 873  
873 874 JSONObject jsonObject = JsonUtil.getObj(formDataStr);
874 875 String parentId = jsonObject.getString("parentId");
875 876  
... ... @@ -1047,9 +1048,10 @@
1047 1048 map.put("sieveResultInfo", sieveResultInfo);
1048 1049 }
1049 1050 }
  1051 + baseResponse.setObject(map);
1050 1052 }
1051 1053  
1052   - return map;
  1054 + return baseResponse;
1053 1055 }
1054 1056  
1055 1057 public BaseResponse reviceSieve(List<String> parentIds, Integer userId) {