회원가입 로직에 광고 트래킹 적용

- 광고 트래킹 관련 Entity 추가
- pid가 현재 광고 중인 pid인 경우 트래킹 로그 생성
This commit is contained in:
2025-03-02 23:45:08 +09:00
parent 801b9934d6
commit 3216c73ee8
11 changed files with 177 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ data class SignUpRequest(
val password: String,
val nickname: String,
val gender: Gender,
val marketingPid: String? = null,
val isAgreeTermsOfService: Boolean,
val isAgreePrivacyPolicy: Boolean,
val container: String = "api"

View File

@@ -0,0 +1,9 @@
package kr.co.vividnext.sodalive.member.signUp
import kr.co.vividnext.sodalive.member.login.LoginResponse
data class SignUpResponse(
val memberId: Long,
val marketingPid: String?,
val loginResponse: LoginResponse
)