[+] Net battle log class

pull/101/head
Azalea 2025-01-04 08:48:48 -05:00
parent 1bd4f4f423
commit c0f7d11828
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
package icu.samnyan.aqua.sega.chusan.model.userdata
//@Entity(name = "ChusanNetBattleLog")
//@Table(name = "chusan_net_battle_log")
class Chu3NetBattleLog(
val roomId: Int = 0,
val track: Int = 0,
val selectUserId: Int = 0,
val selectUserName: String = "",
val opponentUserId1: Int = 0,
val opponentUserId2: Int = 0,
val opponentUserId3: Int = 0,
val opponentUserName1: String = "",
val opponentUserName2: String = "",
val opponentUserName3: String = "",
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 monthPoint: Int = 0,
val eventPoint: Int = 0
) : Chu3UserEntity()