-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: pvp auto-match * fix: add tiers for pvp leaderboard * update: add pvp shedulers
- Loading branch information
1 parent
06adde8
commit 80052cb
Showing
23 changed files
with
469 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
library/src/main/kotlin/delta/codecharacter/dtos/UserMatchStatsDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package delta.codecharacter.dtos | ||
|
||
import java.util.Objects | ||
import com.fasterxml.jackson.annotation.JsonProperty | ||
import jakarta.validation.constraints.DecimalMax | ||
import jakarta.validation.constraints.DecimalMin | ||
import jakarta.validation.constraints.Email | ||
import jakarta.validation.constraints.Max | ||
import jakarta.validation.constraints.Min | ||
import jakarta.validation.constraints.NotNull | ||
import jakarta.validation.constraints.Pattern | ||
import jakarta.validation.constraints.Size | ||
import jakarta.validation.Valid | ||
import io.swagger.v3.oas.annotations.media.Schema | ||
|
||
/** | ||
* User Match Stats model | ||
* @param avgAtk | ||
* @param dcWins | ||
* @param coins | ||
*/ | ||
data class UserMatchStatsDto( | ||
|
||
@Schema(example = "null", required = true, description = "") | ||
@get:JsonProperty("avgAtk", required = true) val avgAtk: java.math.BigDecimal, | ||
|
||
@Schema(example = "null", required = true, description = "") | ||
@get:JsonProperty("dc_wins", required = true) val dcWins: java.math.BigDecimal, | ||
|
||
@Schema(example = "null", required = true, description = "") | ||
@get:JsonProperty("coins", required = true) val coins: java.math.BigDecimal | ||
) { | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,6 @@ enum class MatchModeEnum { | |
SELFPVP, | ||
MANUAL, | ||
AUTO, | ||
AUTOPVP, | ||
PVP | ||
} |
Oops, something went wrong.