package cn.palmte.work.service; import cn.palmte.work.bean.FinalBean; import cn.palmte.work.model.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class ProjectFinalSevice { @Autowired private ProjectFinalCostRepository projectFinalCostRepository; @Autowired private ProjectFinalCashFluxRepository projectFinalCashFluxRepository; @Autowired private ProjectFinalCostManageRepository projectFinalCostManageRepository; @Autowired private ProjectFinalIncomeReposiry projectFinalIncomeReposiry; @Autowired private ProjectEstimateIncomeRepository projectEstimateIncomeRepository; @Autowired private ProjectBudgetCostRepository projectBudgetCostRepository; @Autowired private ProjectBudgetIncomeRepository projectBudgetIncomeRepository; public FinalBean getFinal(Project project) { FinalBean finalBean = new FinalBean(); //收入设备类总额 //工程类总额 //服务类总额 return finalBean; } }