62 Zeilen
2.2 KiB
Java
62 Zeilen
2.2 KiB
Java
/*
|
|
This file is a part of the SteamWar software.
|
|
|
|
Copyright (C) 2020 SteamWar.de-Serverteam
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package de.steamwar.sql;
|
|
|
|
import de.steamwar.sql.internal.Field;
|
|
import de.steamwar.sql.internal.Statement;
|
|
import de.steamwar.sql.internal.Table;
|
|
import lombok.AllArgsConstructor;
|
|
|
|
import java.sql.Timestamp;
|
|
|
|
@AllArgsConstructor
|
|
public class Fight {
|
|
|
|
private static final Table<Fight> table = new Table<>(Fight.class);
|
|
private static final Statement insert = table.insertFields(true, "GameMode", "Server", "StartTime", "Duration", "BlueLeader", "RedLeader", "BlueSchem", "RedSchem", "Win", "WinCondition");
|
|
|
|
@Field(keys = {Table.PRIMARY}, autoincrement = true)
|
|
private final int fightID;
|
|
@Field
|
|
private final String gameMode;
|
|
@Field
|
|
private final String server;
|
|
@Field
|
|
private final Timestamp startTime;
|
|
@Field
|
|
private final int duration;
|
|
@Field
|
|
private final int blueLeader;
|
|
@Field
|
|
private final int redLeader;
|
|
@Field(nullable = true)
|
|
private final Integer blueSchem;
|
|
@Field(nullable = true)
|
|
private final Integer redSchem;
|
|
@Field
|
|
private final int win;
|
|
@Field
|
|
private final String wincondition;
|
|
|
|
public static int create(String gamemode, String server, Timestamp starttime, int duration, int blueleader, int redleader, Integer blueschem, Integer redschem, int win, String wincondition){
|
|
return insert.insertGetKey(gamemode, server, starttime, duration, blueleader, redleader, blueschem, redschem, win, wincondition);
|
|
}
|
|
}
|