@Transactional
public void createData() {
LocalDate localDate = LocalDate.now().minusDays(1);// 得到昨天的日期
List<CategoryReport> categoryReports = categoryReportMapper.categoryReport(localDate);
for(CategoryReport categoryReport:categoryReports){
categoryReportMapper.insert(categoryReport);
}
} |
|