java110
2020-09-10 20bf7cc7f8f92aaeadb170aa8bbc19e13bcb0abe
service-fee/src/main/java/com/java110/fee/api/PayFeeDetailApi.java
@@ -24,15 +24,15 @@
     *
     * @param reqJsonStr
     * @return
     * @serviceCode /importFee/saveImportFeeDetail
     * @path /app/importFee/saveImportFeeDetail
     * @serviceCode /payFeeDetail/importPayFeeDetail
     * @path /app/payFeeDetail/importPayFeeDetail
     */
    @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", "请求报文中未包含小区信息");
        return importPayFeeDetailImpl.importPayFeeDetail(reqJson);