|
@@ -376,7 +376,8 @@ public class ExportServiceImpl implements ExportService {
|
|
|
if(StringUtils.isEmpty(month)){
|
|
|
throw new BizException("请选择导出时间");
|
|
|
}
|
|
|
- return studentOperatingVisitDao.sumVisit(month);
|
|
|
+ Integer tenantId = TenantContextHolder.getTenantId();
|
|
|
+ return studentOperatingVisitDao.sumVisit(month,tenantId.equals("-1")?null:tenantId);
|
|
|
}
|
|
|
|
|
|
|