service-job/src/main/java/com/java110/job/task/report/GenerateFeeMonthStatisticsTemplate.java
@@ -22,18 +22,16 @@
 **/
@Component
public class GenerateFeeMonthStatisticsTemplate extends TaskSystemQuartz {
    private static final Logger logger = LoggerFactory.getLogger(GenerateFeeMonthStatisticsTemplate.class);
    @Autowired
    private IGeneratorFeeMonthStatisticsInnerServiceSMO generatorFeeMonthStatisticsInnerServiceSMOImpl;
    @Override
    protected void process(TaskDto taskDto) throws Exception {
        // 获取小区
        List<CommunityDto> communityDtos = getAllCommunity();
        for (CommunityDto communityDto : communityDtos) {
            try {
                GenerateFeeMonthStatistic(taskDto, communityDto);
@@ -41,7 +39,6 @@
                logger.error("生成月报表 失败", e);
            }
        }
    }
    private void GenerateFeeMonthStatistic(TaskDto taskDto, CommunityDto communityDto) {
@@ -49,6 +46,4 @@
        reportFeeMonthStatisticsPo.setCommunityId(communityDto.getCommunityId());
        generatorFeeMonthStatisticsInnerServiceSMOImpl.generatorData(reportFeeMonthStatisticsPo);
    }
}