|
@@ -102,7 +102,7 @@ public class EtlKuaiShouGroupDailyReportServiceImpl extends ServiceImpl<EtlKuaiS
|
|
|
|
|
|
@Override
|
|
|
public void updateStatus(Long accountId, Long unitId, Integer putStatus) {
|
|
|
- groupDailyReportMapper.updateStatus(accountId,unitId,putStatus);
|
|
|
+ groupDailyReportMapper.updateStatus(accountId, unitId, putStatus);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -142,6 +142,8 @@ public class EtlKuaiShouGroupDailyReportServiceImpl extends ServiceImpl<EtlKuaiS
|
|
|
Long aclick = groupJson.getLong("aclick");
|
|
|
Double v = aclick * play_3s_ratio;
|
|
|
groupDailyReport.setPlay3sCount(v.longValue());
|
|
|
+ Long eventAppInvoked = groupJson.getLong("event_app_invoked");
|
|
|
+ groupDailyReport.setEventAppInvoked(eventAppInvoked);
|
|
|
addList.add(groupDailyReport);
|
|
|
}
|
|
|
if (!Check.isNull(addList)) {
|