old mode 100644
new mode 100755
| | |
| | | */ |
| | | @RequestMapping(value = "/importPayFeeDetail", method = RequestMethod.POST) |
| | | public ResponseEntity<String> saveImportFeeDetail(@RequestBody String reqJsonStr) { |
| | | |
| | | Assert.hasKeyAndValue(reqJsonStr, "communityId", "请求报文中未包含小区信息"); |
| | | |
| | | JSONObject reqJson = JSONObject.parseObject(reqJsonStr); |
| | | Assert.hasKeyAndValue(reqJson, "communityId", "请求报文中未包含小区信息"); |
| | | Assert.hasKeyAndValue(reqJson, "objType", "请求报文中未包含费用对象"); |
| | | Assert.hasKeyAndValue(reqJson, "batchId", "请求报文中未包含批次"); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | return importPayFeeDetailImpl.importPayFeeDetail(reqJson); |