|
|
|
@@ -0,0 +1,137 @@ |
|
|
|
package de.uniluebeck.mi.projmi6.model; |
|
|
|
|
|
|
|
import javafx.beans.property.SimpleBooleanProperty; |
|
|
|
import javafx.beans.property.SimpleIntegerProperty; |
|
|
|
import javafx.beans.property.SimpleStringProperty; |
|
|
|
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
|
|
|
|
/** |
|
|
|
* Created by 627933 on 12.11.15. |
|
|
|
*/ |
|
|
|
public class Fall { |
|
|
|
private Patient patient; |
|
|
|
private Kasse kasse; |
|
|
|
private Diagnose hauptDiagnose; |
|
|
|
private Mitarbeiter einweisenderArzt; |
|
|
|
private Enum<FallArt> fallArt; |
|
|
|
private SimpleBooleanProperty selbsteinweisung = new SimpleBooleanProperty(this, "selbsteinweisung"); |
|
|
|
private SimpleStringProperty versichertenNummer = new SimpleStringProperty(this, "versichertenNummer"); |
|
|
|
private SimpleBooleanProperty storniert = new SimpleBooleanProperty(this, "storniert"); |
|
|
|
private SimpleStringProperty vorstellDatum = new SimpleStringProperty(this, "vorstellDatum"); |
|
|
|
private SimpleStringProperty aufnahmeDatum = new SimpleStringProperty(this, "aufnahmeDatum"); |
|
|
|
private SimpleStringProperty entlassungsDatum = new SimpleStringProperty(this, "entlassungsDatum"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Patient getPatient() { |
|
|
|
return patient; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPatient(Patient patient) { |
|
|
|
this.patient = patient; |
|
|
|
} |
|
|
|
|
|
|
|
public Kasse getKasse() { |
|
|
|
return kasse; |
|
|
|
} |
|
|
|
|
|
|
|
public void setKasse(Kasse kasse) { |
|
|
|
this.kasse = kasse; |
|
|
|
} |
|
|
|
|
|
|
|
public Diagnose getHauptDiagnose() { |
|
|
|
return hauptDiagnose; |
|
|
|
} |
|
|
|
|
|
|
|
public void setHauptDiagnose(Diagnose hauptDiagnose) { |
|
|
|
this.hauptDiagnose = hauptDiagnose; |
|
|
|
} |
|
|
|
|
|
|
|
public Mitarbeiter getEinweisenderArzt() { |
|
|
|
return einweisenderArzt; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEinweisenderArzt(Mitarbeiter einweisenderArzt) { |
|
|
|
this.einweisenderArzt = einweisenderArzt; |
|
|
|
} |
|
|
|
|
|
|
|
public Enum<FallArt> getFallArt() { |
|
|
|
return fallArt; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFallArt(Enum<FallArt> fallArt) { |
|
|
|
this.fallArt = fallArt; |
|
|
|
} |
|
|
|
|
|
|
|
public boolean getSelbsteinweisung() { |
|
|
|
return selbsteinweisung.get(); |
|
|
|
} |
|
|
|
public SimpleBooleanProperty selbsteinweisungProperty() { |
|
|
|
return selbsteinweisung; |
|
|
|
} |
|
|
|
|
|
|
|
public void setSelbsteinweisung(boolean selbsteinweisung) { |
|
|
|
this.selbsteinweisung.set(selbsteinweisung); |
|
|
|
} |
|
|
|
|
|
|
|
public String getVersichertenNummer() { |
|
|
|
return versichertenNummer.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty versichertenNummerProperts() { |
|
|
|
return versichertenNummer; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVersichertenNummer(String versichertenNummer) { |
|
|
|
this.versichertenNummer.set(versichertenNummer); |
|
|
|
} |
|
|
|
public boolean getStorniert() { |
|
|
|
return storniert.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleBooleanProperty storniertProperty() { |
|
|
|
return storniert; |
|
|
|
} |
|
|
|
|
|
|
|
public void setStorniert(boolean storniert) { |
|
|
|
this.storniert.set(storniert); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getVorstellDatum() { |
|
|
|
return vorstellDatum.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty vorstellDatumProperty() { |
|
|
|
return vorstellDatum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVorstellDatum(String vorstellDatum) { |
|
|
|
this.vorstellDatum.set(vorstellDatum); |
|
|
|
} |
|
|
|
|
|
|
|
public String getAufnahmeDatum() { |
|
|
|
return aufnahmeDatum.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty aufnahmeDatumProperty() { |
|
|
|
return aufnahmeDatum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setAufnahmeDatum(String aufnahmeDatum) { |
|
|
|
this.aufnahmeDatum.set(aufnahmeDatum); |
|
|
|
} |
|
|
|
|
|
|
|
public String getEntlassungsDatum() { |
|
|
|
return entlassungsDatum.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty entlassungsDatumProperty() { |
|
|
|
return entlassungsDatum; |
|
|
|
} |
|
|
|
|
|
|
|
public void setEntlassungsDatum(String entlassungsDatum) { |
|
|
|
this.entlassungsDatum.set(entlassungsDatum); |
|
|
|
} |
|
|
|
} |