Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
| | |
| | | |
| | | public void updateHcGovLog(JSONObject paramIn) { |
| | | Assert.hasKeyAndValue(paramIn, "header", "请求报文中未包含header"); |
| | | Assert.hasKeyAndValue(paramIn, "body", "请求报文中未包含body"); |
| | | JSONObject heard = paramIn.getJSONObject("header"); |
| | | JSONObject body = paramIn.getJSONObject("body"); |
| | | |
| | | HcGovTranslatePo hcGovTranslatePo = new HcGovTranslatePo(); |
| | | hcGovTranslatePo.setTranId(heard.getString("tranId")); |
| | |
| | | |
| | | String extCommunityId = header.getString("extCommunityId"); |
| | | |
| | | //签名校验 |
| | | CommunityDto community = null; |
| | | try { |
| | | //获得小区对象 |
| | | String secure = getExtCommunityCode(extCommunityId); |