de.svws_nrw.db.dto.current.schild.gost.DTOFaecherNichtMoeglicheKombination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svws-db-dto Show documentation
Show all versions of svws-db-dto Show documentation
Diese Bibliothek stellt die DTOs für den Zugriff auf Datenbanken für die Schulverwaltungssoftware in NRW zur Verfügung
The newest version!
package de.svws_nrw.db.dto.current.schild.gost;
import de.svws_nrw.db.DBEntityManager;
import jakarta.persistence.Cacheable;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Diese Klasse dient als DTO für die Datenbanktabelle NichtMoeglAbiFachKombi.
* Sie wurde automatisch per Skript generiert und sollte nicht verändert werden,
* da sie aufgrund von Änderungen am DB-Schema ggf. neu generiert und überschrieben wird.
*/
@Entity
@Cacheable(DBEntityManager.use_db_caching)
@Table(name = "NichtMoeglAbiFachKombi")
@JsonPropertyOrder({"Fach1_ID", "Fach2_ID", "Kursart1", "Kursart2", "PK", "Sortierung", "Phase", "Typ"})
public final class DTOFaecherNichtMoeglicheKombination {
/** Die Datenbankabfrage für alle DTOs */
public static final String QUERY_ALL = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e";
/** Die Datenbankabfrage für DTOs anhand der Primärschlüsselattribute */
public static final String QUERY_PK = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.PK = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Primärschlüsselattributwerten */
public static final String QUERY_LIST_PK = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.PK IN ?1";
/** Die Datenbankabfrage für alle DTOs im Rahmen der Migration, wobei die Einträge entfernt werden, die nicht der Primärschlüssel-Constraint entsprechen */
public static final String QUERY_MIGRATION_ALL = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.PK IS NOT NULL";
/** Die Datenbankabfrage für DTOs anhand des Attributes Fach1_ID */
public static final String QUERY_BY_FACH1_ID = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Fach1_ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Fach1_ID */
public static final String QUERY_LIST_BY_FACH1_ID = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Fach1_ID IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Fach2_ID */
public static final String QUERY_BY_FACH2_ID = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Fach2_ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Fach2_ID */
public static final String QUERY_LIST_BY_FACH2_ID = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Fach2_ID IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Kursart1 */
public static final String QUERY_BY_KURSART1 = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Kursart1 = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Kursart1 */
public static final String QUERY_LIST_BY_KURSART1 = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Kursart1 IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Kursart2 */
public static final String QUERY_BY_KURSART2 = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Kursart2 = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Kursart2 */
public static final String QUERY_LIST_BY_KURSART2 = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Kursart2 IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes PK */
public static final String QUERY_BY_PK = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.PK = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes PK */
public static final String QUERY_LIST_BY_PK = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.PK IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Sortierung */
public static final String QUERY_BY_SORTIERUNG = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Sortierung = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Sortierung */
public static final String QUERY_LIST_BY_SORTIERUNG = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Sortierung IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Phase */
public static final String QUERY_BY_PHASE = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Phase = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Phase */
public static final String QUERY_LIST_BY_PHASE = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Phase IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Typ */
public static final String QUERY_BY_TYP = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Typ = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Typ */
public static final String QUERY_LIST_BY_TYP = "SELECT e FROM DTOFaecherNichtMoeglicheKombination e WHERE e.Typ IN ?1";
/** FACH1ID für eine nicht mögliche Kombination */
@Column(name = "Fach1_ID")
@JsonProperty
public long Fach1_ID;
/** FACH2ID für eine nicht mögliche Kombination */
@Column(name = "Fach2_ID")
@JsonProperty
public long Fach2_ID;
/** Kursart Fach1 */
@Column(name = "Kursart1")
@JsonProperty
public String Kursart1;
/** Kursart Fach2 */
@Column(name = "Kursart2")
@JsonProperty
public String Kursart2;
/** Primärschlüssel aus FachIDs und Minuszeichen */
@Id
@Column(name = "PK")
@JsonProperty
public String PK;
/** Sortierung der nicht möglichen Kombination */
@Column(name = "Sortierung")
@JsonProperty
public Integer Sortierung;
/** Über welche Jahrgangsstufen geht die Kombination nicht */
@Column(name = "Phase")
@JsonProperty
public String Phase;
/** Nicht mögliche Fächerkombination (-) oder Fächerprofil (+) */
@Column(name = "Typ")
@JsonProperty
public String Typ;
/**
* Erstellt ein neues Objekt der Klasse DTOFaecherNichtMoeglicheKombination ohne eine Initialisierung der Attribute.
*/
@SuppressWarnings("unused")
private DTOFaecherNichtMoeglicheKombination() {
}
/**
* Erstellt ein neues Objekt der Klasse DTOFaecherNichtMoeglicheKombination ohne eine Initialisierung der Attribute.
* @param Fach1_ID der Wert für das Attribut Fach1_ID
* @param Fach2_ID der Wert für das Attribut Fach2_ID
* @param PK der Wert für das Attribut PK
*/
public DTOFaecherNichtMoeglicheKombination(final long Fach1_ID, final long Fach2_ID, final String PK) {
this.Fach1_ID = Fach1_ID;
this.Fach2_ID = Fach2_ID;
if (PK == null) {
throw new NullPointerException("PK must not be null");
}
this.PK = PK;
}
@Override
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DTOFaecherNichtMoeglicheKombination other = (DTOFaecherNichtMoeglicheKombination) obj;
if (PK == null) {
if (other.PK != null)
return false;
} else if (!PK.equals(other.PK))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((PK == null) ? 0 : PK.hashCode());
return result;
}
/**
* Konvertiert das Objekt in einen String. Dieser kann z.B. für Debug-Ausgaben genutzt werden.
*
* @return die String-Repräsentation des Objektes
*/
@Override
public String toString() {
return "DTOFaecherNichtMoeglicheKombination(Fach1_ID=" + this.Fach1_ID + ", Fach2_ID=" + this.Fach2_ID + ", Kursart1=" + this.Kursart1 + ", Kursart2=" + this.Kursart2 + ", PK=" + this.PK + ", Sortierung=" + this.Sortierung + ", Phase=" + this.Phase + ", Typ=" + this.Typ + ")";
}
}