Compare commits

..

No commits in common. "cbbfe014cc8781bb86f3be569377856f51dc5d95" and "83028f7817f81b202a64e4f0fe6a4caa924f9f53" have entirely different histories.

2 changed files with 0 additions and 8 deletions

View File

@ -46,12 +46,6 @@ class AdminAdStatisticsRepository(private val queryFactory: JPAQueryFactory) {
.otherwise(0)
.sum()
val launchCount = CaseBuilder()
.`when`(adTrackingHistory.type.eq(AdTrackingHistoryType.APP_LAUNCH))
.then(1)
.otherwise(0)
.sum()
val loginCount = CaseBuilder()
.`when`(adTrackingHistory.type.eq(AdTrackingHistoryType.LOGIN))
.then(1)
@ -107,7 +101,6 @@ class AdminAdStatisticsRepository(private val queryFactory: JPAQueryFactory) {
adTrackingHistory.mediaGroup,
adTrackingHistory.pid,
adTrackingHistory.pidName,
launchCount,
loginCount,
signUpCount,
firstPaymentCount,

View File

@ -12,7 +12,6 @@ data class GetAdminAdStatisticsItem @QueryProjection constructor(
val mediaGroup: String,
val pid: String,
val pidName: String,
val launchCount: Int,
val loginCount: Int,
val signUpCount: Int,
val firstPaymentCount: Int,