xiaogang
2021-07-17 1024666b99a24bd7d5e4dc442d6b0c0319fa2f29
service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java
@@ -116,9 +116,10 @@
     */
    @RequestMapping(value = "/queryReportFeeYear", method = RequestMethod.GET)
    public ResponseEntity<String> queryReportFeeYear(@RequestParam(value = "communityId") String communityId,
                                                     @RequestParam(value = "objType") String objType,
                                                     @RequestParam(value = "objName",required = false) String objName,
                                                     @RequestParam(value = "configId",required = false) String configId,
                                                     @RequestParam(value = "objType", required = false) String objType,
                                                     @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
                                                     @RequestParam(value = "objName", required = false) String objName,
                                                     @RequestParam(value = "configId", required = false) String configId,
                                                     @RequestParam(value = "page") int page,
                                                     @RequestParam(value = "row") int row) {
        ReportFeeYearCollectionDto reportFeeYearCollectionDto = new ReportFeeYearCollectionDto();
@@ -128,9 +129,9 @@
        reportFeeYearCollectionDto.setObjType(objType);
        reportFeeYearCollectionDto.setObjName(objName);
        reportFeeYearCollectionDto.setConfigId(configId);
        reportFeeYearCollectionDto.setFeeTypeCd(feeTypeCd);
        return getReportFeeYearCollectionBMOImpl.get(reportFeeYearCollectionDto);
    }
    /**