de.svws_nrw.db.dto.migration.schild.schueler.MigrationDTOSchuelerFehlstunden 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.migration.schild.schueler;
import de.svws_nrw.db.DBEntityManager;
import de.svws_nrw.db.converter.migration.MigrationBooleanPlusMinusDefaultMinusConverter;
import de.svws_nrw.db.converter.migration.MigrationDatumConverter;
import jakarta.persistence.Cacheable;
import jakarta.persistence.Column;
import jakarta.persistence.Convert;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import de.svws_nrw.csv.converter.migration.MigrationBooleanPlusMinusDefaultMinusConverterSerializer;
import de.svws_nrw.csv.converter.migration.MigrationBooleanPlusMinusDefaultMinusConverterDeserializer;
import de.svws_nrw.csv.converter.migration.MigrationDatumConverterSerializer;
import de.svws_nrw.csv.converter.migration.MigrationDatumConverterDeserializer;
/**
* Diese Klasse dient als DTO für die Datenbanktabelle SchuelerFehlstunden.
* 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 = "SchuelerFehlstunden")
@JsonPropertyOrder({"ID", "SchulnrEigner", "Abschnitt_ID", "Datum", "Fach_ID", "FehlStd", "VonStd", "BisStd", "Entschuldigt", "Lehrer_ID"})
public final class MigrationDTOSchuelerFehlstunden {
/** Die Datenbankabfrage für alle DTOs */
public static final String QUERY_ALL = "SELECT e FROM MigrationDTOSchuelerFehlstunden e";
/** Die Datenbankabfrage für DTOs anhand der Primärschlüsselattribute */
public static final String QUERY_PK = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Primärschlüsselattributwerten */
public static final String QUERY_LIST_PK = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.ID 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 MigrationDTOSchuelerFehlstunden e WHERE e.ID IS NOT NULL";
/** Die Datenbankabfrage für DTOs anhand des Attributes ID */
public static final String QUERY_BY_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes ID */
public static final String QUERY_LIST_BY_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.ID IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes SchulnrEigner */
public static final String QUERY_BY_SCHULNREIGNER = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.SchulnrEigner = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes SchulnrEigner */
public static final String QUERY_LIST_BY_SCHULNREIGNER = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.SchulnrEigner IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Abschnitt_ID */
public static final String QUERY_BY_ABSCHNITT_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Abschnitt_ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Abschnitt_ID */
public static final String QUERY_LIST_BY_ABSCHNITT_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Abschnitt_ID IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Datum */
public static final String QUERY_BY_DATUM = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Datum = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Datum */
public static final String QUERY_LIST_BY_DATUM = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Datum IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Fach_ID */
public static final String QUERY_BY_FACH_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Fach_ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Fach_ID */
public static final String QUERY_LIST_BY_FACH_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Fach_ID IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes FehlStd */
public static final String QUERY_BY_FEHLSTD = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.FehlStd = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes FehlStd */
public static final String QUERY_LIST_BY_FEHLSTD = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.FehlStd IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes VonStd */
public static final String QUERY_BY_VONSTD = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.VonStd = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes VonStd */
public static final String QUERY_LIST_BY_VONSTD = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.VonStd IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes BisStd */
public static final String QUERY_BY_BISSTD = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.BisStd = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes BisStd */
public static final String QUERY_LIST_BY_BISSTD = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.BisStd IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Entschuldigt */
public static final String QUERY_BY_ENTSCHULDIGT = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Entschuldigt = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Entschuldigt */
public static final String QUERY_LIST_BY_ENTSCHULDIGT = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Entschuldigt IN ?1";
/** Die Datenbankabfrage für DTOs anhand des Attributes Lehrer_ID */
public static final String QUERY_BY_LEHRER_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Lehrer_ID = ?1";
/** Die Datenbankabfrage für DTOs anhand einer Liste von Werten des Attributes Lehrer_ID */
public static final String QUERY_LIST_BY_LEHRER_ID = "SELECT e FROM MigrationDTOSchuelerFehlstunden e WHERE e.Lehrer_ID IN ?1";
/** ID des Fehlstundeneintrags */
@Id
@Column(name = "ID")
@JsonProperty
public Long ID;
/** Die Schulnummer zu welcher der Datensatz gehört – wird benötigt, wenn mehrere Schulen in einem Schema der Datenbank gespeichert werden */
@Column(name = "SchulnrEigner")
@JsonProperty
public Integer SchulnrEigner;
/** AbschnittsID des zugehörigen Lernabschnitts */
@Column(name = "Abschnitt_ID")
@JsonProperty
public Long Abschnitt_ID;
/** Datum der Fehlzeit */
@Column(name = "Datum")
@JsonProperty
@Convert(converter = MigrationDatumConverter.class)
@JsonSerialize(using = MigrationDatumConverterSerializer.class)
@JsonDeserialize(using = MigrationDatumConverterDeserializer.class)
public String Datum;
/** FachID der Fehlzeit */
@Column(name = "Fach_ID")
@JsonProperty
public Long Fach_ID;
/** Anzahl der Fehlstunden */
@Column(name = "FehlStd")
@JsonProperty
public Double FehlStd;
/** Beginn Stunde Fehlzeit */
@Column(name = "VonStd")
@JsonProperty
public Integer VonStd;
/** Ende Stunde Fehlzeit */
@Column(name = "BisStd")
@JsonProperty
public Integer BisStd;
/** Entschuldigt Ja Nein */
@Column(name = "Entschuldigt")
@JsonProperty
@Convert(converter = MigrationBooleanPlusMinusDefaultMinusConverter.class)
@JsonSerialize(using = MigrationBooleanPlusMinusDefaultMinusConverterSerializer.class)
@JsonDeserialize(using = MigrationBooleanPlusMinusDefaultMinusConverterDeserializer.class)
public Boolean Entschuldigt;
/** LehrerID der Fehlzeit */
@Column(name = "Lehrer_ID")
@JsonProperty
public Long Lehrer_ID;
/**
* Erstellt ein neues Objekt der Klasse MigrationDTOSchuelerFehlstunden ohne eine Initialisierung der Attribute.
*/
@SuppressWarnings("unused")
private MigrationDTOSchuelerFehlstunden() {
}
/**
* Erstellt ein neues Objekt der Klasse MigrationDTOSchuelerFehlstunden ohne eine Initialisierung der Attribute.
* @param ID der Wert für das Attribut ID
* @param SchulnrEigner der Wert für das Attribut SchulnrEigner
* @param Abschnitt_ID der Wert für das Attribut Abschnitt_ID
* @param Datum der Wert für das Attribut Datum
* @param FehlStd der Wert für das Attribut FehlStd
*/
public MigrationDTOSchuelerFehlstunden(final Long ID, final Integer SchulnrEigner, final Long Abschnitt_ID, final String Datum, final Double FehlStd) {
if (ID == null) {
throw new NullPointerException("ID must not be null");
}
this.ID = ID;
if (SchulnrEigner == null) {
throw new NullPointerException("SchulnrEigner must not be null");
}
this.SchulnrEigner = SchulnrEigner;
if (Abschnitt_ID == null) {
throw new NullPointerException("Abschnitt_ID must not be null");
}
this.Abschnitt_ID = Abschnitt_ID;
if (Datum == null) {
throw new NullPointerException("Datum must not be null");
}
this.Datum = Datum;
if (FehlStd == null) {
throw new NullPointerException("FehlStd must not be null");
}
this.FehlStd = FehlStd;
}
@Override
public boolean equals(final Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
MigrationDTOSchuelerFehlstunden other = (MigrationDTOSchuelerFehlstunden) obj;
if (ID == null) {
if (other.ID != null)
return false;
} else if (!ID.equals(other.ID))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((ID == null) ? 0 : ID.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 "MigrationDTOSchuelerFehlstunden(ID=" + this.ID + ", SchulnrEigner=" + this.SchulnrEigner + ", Abschnitt_ID=" + this.Abschnitt_ID + ", Datum=" + this.Datum + ", Fach_ID=" + this.Fach_ID + ", FehlStd=" + this.FehlStd + ", VonStd=" + this.VonStd + ", BisStd=" + this.BisStd + ", Entschuldigt=" + this.Entschuldigt + ", Lehrer_ID=" + this.Lehrer_ID + ")";
}
}