[+] Add net battle log sql table

This commit is contained in:
Azalea
2025-01-04 17:52:46 -05:00
parent 5445fbed6c
commit e2d6e29d7b
2 changed files with 84 additions and 32 deletions

View File

@@ -1,7 +1,10 @@
package icu.samnyan.aqua.sega.chusan.model.userdata
//@Entity(name = "ChusanNetBattleLog")
//@Table(name = "chusan_net_battle_log")
import jakarta.persistence.Entity
import jakarta.persistence.Table
@Entity(name = "ChusanNetBattleLog")
@Table(name = "chusan_net_battle_log")
class Chu3NetBattleLog(
val roomId: Long = 0,
val track: Long = 0,
@@ -13,34 +16,34 @@ class Chu3NetBattleLog(
val opponentUserName1: String = "",
val opponentUserName2: String = "",
val opponentUserName3: String = "",
val opponentRegionId1: Long = 0,
val opponentRegionId2: Long = 0,
val opponentRegionId3: Long = 0,
val opponentRating1: Long = 0,
val opponentRating2: Long = 0,
val opponentRating3: Long = 0,
val opponentBattleRankId1: Long = 0,
val opponentBattleRankId2: Long = 0,
val opponentBattleRankId3: Long = 0,
val opponentClassEmblemMedal1: Long = 0,
val opponentClassEmblemMedal2: Long = 0,
val opponentClassEmblemMedal3: Long = 0,
val opponentClassEmblemBase1: Long = 0,
val opponentClassEmblemBase2: Long = 0,
val opponentClassEmblemBase3: Long = 0,
val opponentScore1: Long = 0,
val opponentScore2: Long = 0,
val opponentScore3: Long = 0,
val opponentCharaIllustId1: Long = 0,
val opponentCharaIllustId2: Long = 0,
val opponentCharaIllustId3: Long = 0,
val opponentCharaLv1: Long = 0,
val opponentCharaLv2: Long = 0,
val opponentCharaLv3: Long = 0,
val opponentRatingEffectColorId1: Long = 0,
val opponentRatingEffectColorId2: Long = 0,
val opponentRatingEffectColorId3: Long = 0,
val battleRuleId: Long = 0,
val monthPoLong: Long = 0,
val eventPoLong: Long = 0
val opponentRegionId1: Int = 0,
val opponentRegionId2: Int = 0,
val opponentRegionId3: Int = 0,
val opponentRating1: Int = 0,
val opponentRating2: Int = 0,
val opponentRating3: Int = 0,
val opponentBattleRankId1: Int = 0,
val opponentBattleRankId2: Int = 0,
val opponentBattleRankId3: Int = 0,
val opponentClassEmblemMedal1: Int = 0,
val opponentClassEmblemMedal2: Int = 0,
val opponentClassEmblemMedal3: Int = 0,
val opponentClassEmblemBase1: Int = 0,
val opponentClassEmblemBase2: Int = 0,
val opponentClassEmblemBase3: Int = 0,
val opponentScore1: Int = 0,
val opponentScore2: Int = 0,
val opponentScore3: Int = 0,
val opponentCharaIllustId1: Int = 0,
val opponentCharaIllustId2: Int = 0,
val opponentCharaIllustId3: Int = 0,
val opponentCharaLv1: Int = 0,
val opponentCharaLv2: Int = 0,
val opponentCharaLv3: Int = 0,
val opponentRatingEffectColorId1: Int = 0,
val opponentRatingEffectColorId2: Int = 0,
val opponentRatingEffectColorId3: Int = 0,
val battleRuleId: Int = 0,
val monthPoLong: Int = 0,
val eventPoLong: Int = 0
) : Chu3UserEntity()