| | |
| | | |
| | | import com.java110.community.bmo.communitySetting.IUpdateCommunitySettingBMO; |
| | | import com.java110.core.annotation.Java110Transactional; |
| | | import com.java110.core.factory.CommunitySettingFactory; |
| | | import com.java110.intf.community.ICommunitySettingInnerServiceSMO; |
| | | import com.java110.po.communitySetting.CommunitySettingPo; |
| | | import com.java110.vo.ResultVo; |
| | |
| | | private ICommunitySettingInnerServiceSMO communitySettingInnerServiceSMOImpl; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | * @param communitySettingPo |
| | | * @return 订单服务能够接受的报文 |
| | | */ |
| | |
| | | |
| | | int flag = communitySettingInnerServiceSMOImpl.updateCommunitySetting(communitySettingPo); |
| | | |
| | | if (flag > 0) { |
| | | return ResultVo.createResponseEntity(ResultVo.CODE_OK, "保存成功"); |
| | | if (flag < 1) { |
| | | return ResultVo.createResponseEntity(ResultVo.CODE_ERROR, "保存失败"); |
| | | } |
| | | |
| | | return ResultVo.createResponseEntity(ResultVo.CODE_ERROR, "保存失败"); |
| | | //将结果写入缓存 |
| | | CommunitySettingFactory.getCommunitySettingFromDb(communitySettingPo.getCommunityId(), communitySettingPo.getSettingKey()); |
| | | return ResultVo.createResponseEntity(ResultVo.CODE_OK, "保存成功"); |
| | | |
| | | } |
| | | |
| | | } |