技术监督管理调整

This commit is contained in:
2023-07-04 13:48:54 +08:00
parent c9dbe3f861
commit e6f332165e
2 changed files with 2 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ public interface ISupvReportMService extends IMppService<SupvReportM> {
* @author cdf
* @date 2023/6/26
*/
boolean statisticSuperviseReport(LocalDate timeId);
void statisticSuperviseReport(LocalDate timeId);
Page<SupvReportM> statisticReportPage(BaseParam baseParam);

View File

@@ -64,7 +64,7 @@ public class SupvReportMServiceImpl extends MppServiceImpl<SupvReportMMapper, Su
@Override
@Async("asyncExecutor")
public boolean statisticSuperviseReport(LocalDate timeId) {
public void statisticSuperviseReport(LocalDate timeId) {
log.info(LocalDateTime.now()+"_________________________开始执行");
TimeInterval timeInterval = new TimeInterval();
@@ -257,7 +257,6 @@ public class SupvReportMServiceImpl extends MppServiceImpl<SupvReportMMapper, Su
this.saveOrUpdateBatchByMultiId(supvReportMBatch);
log.info(LocalDateTime.now()+"_________________________执行时长"+timeInterval.interval());
return true;
}
@Override