Salman Manoe 629b97dd34 Update domain entity
Penerapan lombok untuk mengurangi boilerplate code
2025-02-25 15:40:44 +07:00

80 lines
1.8 KiB
Java

package com.jasamedika.medifirst2000.entities;
import com.jasamedika.medifirst2000.base.BaseTransaction;
import com.jasamedika.medifirst2000.helper.Caption;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.*;
@Getter
@Setter
@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)
@Caption(value = "c15")
private String c15;
@Column(name = "c30", length = 50)
@Caption(value = "c30")
private String c30;
@Column(name = "c35", length = 50)
@Caption(value = "c35")
private String c35;
@Column(name = "c45", length = 50)
@Caption(value = "c45")
private String c45;
@Column(name = "c60", length = 50)
@Caption(value = "c60")
private String c60;
@Column(name = "c75", length = 50)
@Caption(value = "c75")
private String c75;
@Column(name = "c90", length = 50)
@Caption(value = "c90")
private String c90;
@Column(name = "c105", length = 50)
@Caption(value = "c105")
private String c105;
@Column(name = "c120", length = 50)
@Caption(value = "c120")
private String c120;
@Column(name = "c135", length = 50)
@Caption(value = "c135")
private String c135;
@Column(name = "c165", length = 50)
@Caption(value = "c165")
private String c165;
@Column(name = "c180", length = 50)
@Caption(value = "c180")
private String c180;
@Column(name = "c195", length = 50)
@Caption(value = "c195")
private String c195;
}