|
@@ -1,5 +1,6 @@
|
|
|
package com.keao.edu.user.service.impl;
|
|
|
|
|
|
+import com.keao.edu.auth.api.client.SysUserFeignService;
|
|
|
import com.keao.edu.auth.api.entity.SysUser;
|
|
|
import com.keao.edu.common.dal.BaseDAO;
|
|
|
import com.keao.edu.common.enums.MessageTypeEnum;
|
|
@@ -63,6 +64,10 @@ public class ExaminationBasicServiceImpl extends BaseServiceImpl<Long, Examinati
|
|
|
@Autowired
|
|
|
private TenantInfoDao tenantInfoDao;
|
|
|
@Autowired
|
|
|
+ private ExamRegistrationPaymentDao examRegistrationPaymentDao;
|
|
|
+ @Autowired
|
|
|
+ private SysUserFeignService sysUserFeignService;
|
|
|
+ @Autowired
|
|
|
private ExamTeacherSalaryService examTeacherSalaryService;
|
|
|
|
|
|
@Override
|
|
@@ -440,4 +445,13 @@ public class ExaminationBasicServiceImpl extends BaseServiceImpl<Long, Examinati
|
|
|
}
|
|
|
return examinationBasic;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Object homeBalanceOfPayment(String tenantId,Integer day) {
|
|
|
+ SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
+ BigDecimal annualIncome = examRegistrationPaymentDao.getAnnualIncome(tenantId);
|
|
|
+ BigDecimal monthIncome = examRegistrationPaymentDao.getMonthIncome(tenantId);
|
|
|
+ List<Map<String,BigDecimal>> dayIncomes = examRegistrationPaymentDao.getDayIncome(tenantId,day);
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|