|
|
@@ -118,6 +118,7 @@ public class ReportFeeYearCollectionApi {
|
|
|
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 = "page") int page,
|
|
|
@RequestParam(value = "row") int row) {
|
|
|
ReportFeeYearCollectionDto reportFeeYearCollectionDto = new ReportFeeYearCollectionDto();
|
|
|
@@ -126,6 +127,7 @@ public class ReportFeeYearCollectionApi {
|
|
|
reportFeeYearCollectionDto.setCommunityId(communityId);
|
|
|
reportFeeYearCollectionDto.setObjType(objType);
|
|
|
reportFeeYearCollectionDto.setObjName(objName);
|
|
|
+ reportFeeYearCollectionDto.setConfigId(configId);
|
|
|
return getReportFeeYearCollectionBMOImpl.get(reportFeeYearCollectionDto);
|
|
|
}
|
|
|
|