| | |
| | | JSONObject businessOwnerAppUser = new JSONObject(); |
| | | businessOwnerAppUser.putAll(paramInJson); |
| | | //状态类型,10000 审核中,12000 审核成功,13000 审核失败 |
| | | businessOwnerAppUser.put("state", "10000"); |
| | | businessOwnerAppUser.put("state", "12000"); |
| | | businessOwnerAppUser.put("appTypeCd", "10010"); |
| | | businessOwnerAppUser.put("appUserId", "-1"); |
| | | businessOwnerAppUser.put("memberId", ownerDto.getMemberId()); |
| | |
| | | businessOwnerAppUser.put("appUserName", ownerDto.getName()); |
| | | businessOwnerAppUser.put("idCard", ownerDto.getIdCard()); |
| | | businessOwnerAppUser.put("link", ownerDto.getLink()); |
| | | businessOwnerAppUser.put("userId", paramInJson.getString("userId")); |
| | | business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessOwnerAppUser", businessOwnerAppUser); |
| | | return business; |
| | | } |
| | |
| | | |
| | | return business; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 退出小区成员 |
| | |
| | | business.put(CommonConstant.HTTP_SEQ, DEFAULT_SEQ); |
| | | business.put(CommonConstant.HTTP_INVOKE_MODEL, CommonConstant.HTTP_INVOKE_MODEL_S); |
| | | JSONObject businessOwner = new JSONObject(); |
| | | |
| | | businessOwner.putAll(BeanConvertUtil.beanCovertMap(ownerDtos.get(0))); |
| | | businessOwner.putAll(paramInJson); |
| | | businessOwner.put("state", ownerDtos.get(0).getState()); |
| | | business.getJSONObject(CommonConstant.HTTP_BUSINESS_DATAS).put("businessOwner", businessOwner); |