package com.jasamedika.medifirst2000.entities; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import com.jasamedika.medifirst2000.base.BaseTransaction; import com.jasamedika.medifirst2000.helper.Caption; @Entity @Table(name="TandaVitalDetail_T") public class TandaVitalDetail extends BaseTransaction { @Column(name = "ObjectAnestesiLokalFk", nullable=false) private String anestesiLokalId; @ManyToOne @JoinColumn(name = "ObjectAsuhanKeperawatanPeriOperatifFk") @Caption(value="AsuhanKeperawatanPeriOperatif") private AsuhanKeperawatanPeriOperatif tandaVital; @Column(name = "ObjectAsuhanKeperawatanPeriOperatifFk", insertable=false, updatable=false, nullable=false) private Integer tandaVitalId; @Column(name = "c15", length = 50, nullable = true) @Caption(value = "c15") private String c15; @Column(name = "c30", length = 50, nullable = true) @Caption(value = "c30") private String c30; @Column(name = "c35", length = 50, nullable = true) @Caption(value = "c35") private String c35; @Column(name = "c45", length = 50, nullable = true) @Caption(value = "c45") private String c45; @Column(name = "c60", length = 50, nullable = true) @Caption(value = "c60") private String c60; @Column(name = "c75", length = 50, nullable = true) @Caption(value = "c75") private String c75; @Column(name = "c90", length = 50, nullable = true) @Caption(value = "c90") private String c90; @Column(name = "c105", length = 50, nullable = true) @Caption(value = "c105") private String c105; @Column(name = "c120", length = 50, nullable = true) @Caption(value = "c120") private String c120; @Column(name = "c135", length = 50, nullable = true) @Caption(value = "c135") private String c135; @Column(name = "c165", length = 50, nullable = true) @Caption(value = "c165") private String c165; @Column(name = "c180", length = 50, nullable = true) @Caption(value = "c180") private String c180; @Column(name = "c195", length = 50, nullable = true) @Caption(value = "c195") private String c195; public String getAnestesiLokalId() { return anestesiLokalId; } public void setAnestesiLokalId(String anestesiLokalId) { this.anestesiLokalId = anestesiLokalId; } public AsuhanKeperawatanPeriOperatif getTandaVital() { return tandaVital; } public void setTandaVital(AsuhanKeperawatanPeriOperatif tandaVital) { this.tandaVital = tandaVital; } public Integer getTandaVitalId() { return tandaVitalId; } public void setTandaVitalId(Integer tandaVitalId) { this.tandaVitalId = tandaVitalId; } public String getC15() { return c15; } public void setC15(String c15) { this.c15 = c15; } public String getC30() { return c30; } public void setC30(String c30) { this.c30 = c30; } public String getC35() { return c35; } public void setC35(String c35) { this.c35 = c35; } public String getC45() { return c45; } public void setC45(String c45) { this.c45 = c45; } public String getC60() { return c60; } public void setC60(String c60) { this.c60 = c60; } public String getC75() { return c75; } public void setC75(String c75) { this.c75 = c75; } public String getC90() { return c90; } public void setC90(String c90) { this.c90 = c90; } public String getC105() { return c105; } public void setC105(String c105) { this.c105 = c105; } public String getC120() { return c120; } public void setC120(String c120) { this.c120 = c120; } public String getC135() { return c135; } public void setC135(String c135) { this.c135 = c135; } public String getC165() { return c165; } public void setC165(String c165) { this.c165 = c165; } public String getC180() { return c180; } public void setC180(String c180) { this.c180 = c180; } public String getC195() { return c195; } public void setC195(String c195) { this.c195 = c195; } }