Remove referensi aturan signa
This commit is contained in:
parent
ed2ea02625
commit
a6fd78f197
@ -1,44 +0,0 @@
|
|||||||
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.*;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import static javax.persistence.FetchType.LAZY;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author salmanoe
|
|
||||||
* @version 1.0.0
|
|
||||||
* @since 24/10/2023
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@Entity
|
|
||||||
@Table(name = "ref_frekuensi_pakai_obat_t")
|
|
||||||
public class ReferensiFrekuensiPakaiObat extends BaseTransaction implements Serializable {
|
|
||||||
private static final long serialVersionUID = -3749546920616922816L;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "pegawaifk")
|
|
||||||
@NotNull(message = "Pegawai tidak boleh kosong")
|
|
||||||
@Caption(value = "Pegawai")
|
|
||||||
private Pegawai pegawai;
|
|
||||||
|
|
||||||
@Column(name = "pegawaifk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Integer pegawaiId;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "frekuensipakaiobatfk")
|
|
||||||
@NotNull(message = "Frekuensi pakai obat tidak boleh kosong")
|
|
||||||
@Caption(value = "Frekuensi Pakai Obat")
|
|
||||||
private FrekuensiPakaiObat frekuensiPakaiObat;
|
|
||||||
|
|
||||||
@Column(name = "frekuensipakaiobatfk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Long frekuensiPakaiObatId;
|
|
||||||
}
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
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.*;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import static javax.persistence.FetchType.LAZY;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author salmanoe
|
|
||||||
* @version 1.0.0
|
|
||||||
* @since 24/10/2023
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@Entity
|
|
||||||
@Table(name = "ref_jumlah_dosis_t")
|
|
||||||
public class ReferensiJumlahDosis extends BaseTransaction implements Serializable {
|
|
||||||
private static final long serialVersionUID = -5069441697323457473L;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "pegawaifk")
|
|
||||||
@NotNull(message = "Pegawai tidak boleh kosong")
|
|
||||||
@Caption(value = "Pegawai")
|
|
||||||
private Pegawai pegawai;
|
|
||||||
|
|
||||||
@Column(name = "pegawaifk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Integer pegawaiId;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "jumlahdosisfk")
|
|
||||||
@NotNull(message = "Jumlah dosis tidak boleh kosong")
|
|
||||||
@Caption(value = "Jumlah Dosis")
|
|
||||||
private JumlahDosis jumlahDosis;
|
|
||||||
|
|
||||||
@Column(name = "jumlahdosisfk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Long jumlahDosisId;
|
|
||||||
}
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
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.*;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import static javax.persistence.FetchType.LAZY;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author salmanoe
|
|
||||||
* @version 1.0.0
|
|
||||||
* @since 24/10/2023
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@Entity
|
|
||||||
@Table(name = "ref_keterangan_pakai_obat_t")
|
|
||||||
public class ReferensiKeteranganPakaiObat extends BaseTransaction implements Serializable {
|
|
||||||
private static final long serialVersionUID = -5627234928801568807L;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "pegawaifk")
|
|
||||||
@NotNull(message = "Pegawai tidak boleh kosong")
|
|
||||||
@Caption(value = "Pegawai")
|
|
||||||
private Pegawai pegawai;
|
|
||||||
|
|
||||||
@Column(name = "pegawaifk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Integer pegawaiId;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "keteranganpakaiobatfk")
|
|
||||||
@NotNull(message = "Keterangan pakai obat tidak boleh kosong")
|
|
||||||
@Caption(value = "Keterangan Pakai Obat")
|
|
||||||
private KeteranganPakaiObat keteranganPakaiObat;
|
|
||||||
|
|
||||||
@Column(name = "keteranganpakaiobatfk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Long keteranganPakaiObatId;
|
|
||||||
}
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
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.*;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
import static javax.persistence.FetchType.LAZY;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author salmanoe
|
|
||||||
* @version 1.0.0
|
|
||||||
* @since 24/10/2023
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
@Setter
|
|
||||||
@Entity
|
|
||||||
@Table(name = "ref_satuan_dosis_t")
|
|
||||||
public class ReferensiSatuanDosis extends BaseTransaction implements Serializable {
|
|
||||||
private static final long serialVersionUID = -4298235101503616044L;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "pegawaifk")
|
|
||||||
@NotNull(message = "Pegawai tidak boleh kosong")
|
|
||||||
@Caption(value = "Pegawai")
|
|
||||||
private Pegawai pegawai;
|
|
||||||
|
|
||||||
@Column(name = "pegawaifk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Integer pegawaiId;
|
|
||||||
|
|
||||||
@ManyToOne(fetch = LAZY)
|
|
||||||
@JoinColumn(name = "satuandosisfk")
|
|
||||||
@NotNull(message = "Satuan dosis tidak boleh kosong")
|
|
||||||
@Caption(value = "Satuan Dosis")
|
|
||||||
private SatuanDosis satuanDosis;
|
|
||||||
|
|
||||||
@Column(name = "satuandosisfk", insertable = false, updatable = false, nullable = false)
|
|
||||||
private Long satuanDosisId;
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user