| | |
| | | // 获取本年度的投资金额 |
| | | List<ProjectInfoYearPlan> yearPlans = new LambdaQueryChainWrapper<>(projectInfoYearPlanService.getBaseMapper()) |
| | | .eq(ProjectInfoYearPlan::getProjectInfoId, projectVO.getId()) |
| | | .eq(ProjectInfoYearPlan::getYear, year) |
| | | .eq(ProjectInfoYearPlan::getYear, String.valueOf(year)) |
| | | .list(); |
| | | if (! CollectionUtils.isEmpty(yearPlans)) { |
| | | projectVO.setYearInvestAmount(yearPlans.get(0).getYearTotalMoney()); |
| | |
| | | <artifactId>spring-boot-maven-plugin</artifactId> |
| | | <version>2.5.15</version> |
| | | <configuration> |
| | | <includeSystemScope>true</includeSystemScope> |
| | | <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
| | | </configuration> |
| | | <executions> |