| | |
| | | paramInJson.put("communityId", GenerateCodeFactory.getCommunityId()); |
| | | paramInJson.put("state", "1000"); |
| | | paramInJson.put("communityArea", "0"); |
| | | paramInJson.put("createTime", new Date()); |
| | | paramInJson.put("bId", "-1"); |
| | | CommunityPo communityPo = BeanConvertUtil.covertBean(paramInJson, CommunityPo.class); |
| | | communityInnerServiceSMOImpl.saveCommunity(communityPo); |
| | | super.insert(dataFlowContext, communityPo, BusinessTypeConstant.BUSINESS_TYPE_SAVE_COMMUNITY_INFO); |
| | | |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return 订单服务能够接受的报文 |
| | | */ |
| | | public void updateCommunityOne(JSONObject paramInJson, DataFlowContext dataFlowContext) { |
| | | |
| | | CommunityPo communityPo = BeanConvertUtil.covertBean(paramInJson, CommunityPo.class); |
| | | communityInnerServiceSMOImpl.updateCommunity(communityPo); |
| | | |
| | | super.update(dataFlowContext, communityPo, BusinessTypeConstant.BUSINESS_TYPE_UPDATE_COMMUNITY_INFO); |
| | | } |
| | | } |