浏览代码

FallID hinzugefuegt.

hapi
Nils Dittberner 10 年前
父节点
当前提交
b819ebd005
共有 1 个文件被更改,包括 18 次插入1 次删除
  1. +18
    -1
      src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java

+ 18
- 1
src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java 查看文件

@@ -21,7 +21,7 @@ public class Fall {
private SimpleStringProperty vorstellDatum = new SimpleStringProperty(this, "vorstellDatum"); private SimpleStringProperty vorstellDatum = new SimpleStringProperty(this, "vorstellDatum");
private SimpleStringProperty aufnahmeDatum = new SimpleStringProperty(this, "aufnahmeDatum"); private SimpleStringProperty aufnahmeDatum = new SimpleStringProperty(this, "aufnahmeDatum");
private SimpleStringProperty entlassungsDatum = new SimpleStringProperty(this, "entlassungsDatum"); private SimpleStringProperty entlassungsDatum = new SimpleStringProperty(this, "entlassungsDatum");
private SimpleIntegerProperty fallID = new SimpleIntegerProperty(this, "fallid");




public Patient getPatient() { public Patient getPatient() {
@@ -67,6 +67,7 @@ public class Fall {
public boolean getSelbsteinweisung() { public boolean getSelbsteinweisung() {
return selbsteinweisung.get(); return selbsteinweisung.get();
} }

public SimpleBooleanProperty selbsteinweisungProperty() { public SimpleBooleanProperty selbsteinweisungProperty() {
return selbsteinweisung; return selbsteinweisung;
} }
@@ -86,6 +87,7 @@ public class Fall {
public void setVersichertenNummer(String versichertenNummer) { public void setVersichertenNummer(String versichertenNummer) {
this.versichertenNummer.set(versichertenNummer); this.versichertenNummer.set(versichertenNummer);
} }

public boolean getStorniert() { public boolean getStorniert() {
return storniert.get(); return storniert.get();
} }
@@ -98,6 +100,21 @@ public class Fall {
this.storniert.set(storniert); this.storniert.set(storniert);
} }


public SimpleStringProperty versichertenNummerProperty() {
return versichertenNummer;
}

public int getFallID() {
return fallID.get();
}

public SimpleIntegerProperty fallIDProperty() {
return fallID;
}

public void setFallID(int fallID) {
this.fallID.set(fallID);
}


public String getVorstellDatum() { public String getVorstellDatum() {
return vorstellDatum.get(); return vorstellDatum.get();


正在加载...
取消
保存