Update domain entities master
hapus serial version uid
This commit is contained in:
parent
4ce37d8a24
commit
bd75a88420
@ -27,8 +27,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Table(name = "Alamat_M")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class Alamat extends BaseMaster {
|
||||
private static final long serialVersionUID = 5328187153021249284L;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.alamat_m_id_seq")
|
||||
@SequenceGenerator(name = "public.alamat_m_id_seq", sequenceName = "public.alamat_m_id_seq", allocationSize = 1)
|
||||
|
||||
@ -15,9 +15,6 @@ import org.hibernate.envers.Audited;
|
||||
@Entity // @Audited
|
||||
@Table(name = "RM_AntibiotikProfilaksis_M")
|
||||
public class AntiBiotikProfilaksis extends BaseMaster {
|
||||
|
||||
private static final long serialVersionUID = 298612747765988090L;
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
@Caption(value = "Name")
|
||||
|
||||
@ -1,15 +1,11 @@
|
||||
package com.jasamedika.medifirst2000.entities;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.helper.Caption;import org.hibernate.envers.Audited;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Entity //@Audited
|
||||
@Table(name = "AsesmenGiziLanjut_T")
|
||||
|
||||
@ -13,7 +13,7 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Entity // @Audited
|
||||
@Entity
|
||||
@Table(name = "Asset_T")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class Asset extends BaseTransaction {
|
||||
|
||||
@ -16,9 +16,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "CssdAlat_M")
|
||||
public class CssdAlat extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 3820558525363215168L;
|
||||
|
||||
@JsonBackReference
|
||||
@ManyToOne
|
||||
@Caption(value = "Cssd Alat")
|
||||
|
||||
@ -16,9 +16,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "CssdBmhp_M")
|
||||
public class CssdBmhp extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 5692158402199485792L;
|
||||
|
||||
@JsonBackReference
|
||||
@ManyToOne
|
||||
@Caption(value = "Cssd Alat")
|
||||
|
||||
@ -22,9 +22,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "CssdSetAlat_M")
|
||||
public class CssdSetAlat extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = -4505690301870524835L;
|
||||
|
||||
@ManyToOne
|
||||
@Caption(value = "Set Alat")
|
||||
@JoinColumn(name = "ObjectPaketFk")
|
||||
|
||||
@ -20,8 +20,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Table(name = "Diagnosa_M")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class Diagnosa extends BaseMaster {
|
||||
private static final long serialVersionUID = 1960221286223158801L;
|
||||
|
||||
@NotNull(message = "Kd Diagnosa tidak boleh kosong")
|
||||
@Column(name = "KdDiagnosa", nullable = false, length = 10)
|
||||
@Caption(value = "Kode Diagnosa")
|
||||
|
||||
@ -2,25 +2,18 @@ package com.jasamedika.medifirst2000.entities;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import org.hibernate.envers.Audited;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
|
||||
@Entity // @Audited
|
||||
@Entity
|
||||
@Table(name = "GenericView_M")
|
||||
public class GenericView extends BaseMaster {
|
||||
|
||||
/**
|
||||
* @author Andri
|
||||
*/
|
||||
//private static final long serialVersionUID = 715784036911072684L;
|
||||
|
||||
@NotNull(message = "previx tidak boleh kosong")
|
||||
@Column(name = "previx", nullable = false, length = 50)
|
||||
@Caption(value = "previx")
|
||||
|
||||
@ -25,13 +25,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Table(name = "HistoryLoginModulAplikasi_S")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class HistoryLoginModulAplikasi extends BaseMaster {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
//private static final long serialVersionUID = -3893896384067641807L;
|
||||
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.historyloginmodulaplikasi_m_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.historyloginmodulaplikasi_m_id_seq", sequenceName = "public.historyloginmodulaplikasi_m_id_seq", allocationSize = 1)
|
||||
|
||||
@ -25,13 +25,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Table(name = "HistoryLoginUser_S")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class HistoryLoginUser extends BaseMaster {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
//private static final long serialVersionUID = -8065312553378787832L;
|
||||
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.historyloginuser_m_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.historyloginuser_m_id_seq", sequenceName = "public.historyloginuser_m_id_seq", allocationSize = 1)
|
||||
|
||||
@ -14,9 +14,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "JenisBelanja_M")
|
||||
public class JenisBelanja extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 3471896142381808934L;
|
||||
|
||||
@Column(name = "KodeJenisBelanja", nullable = true)
|
||||
@NotNull(message = "Kode Jenis Belanja tidak boleh kosong")
|
||||
@Caption(value = "Kode Jenis Belanja")
|
||||
|
||||
@ -13,9 +13,6 @@ import javax.persistence.Id;
|
||||
@Entity // @Audited
|
||||
@Table(name = "JenisKonsumsi_M")
|
||||
public class JenisKonsumsi extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 8385137929069856903L;
|
||||
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
|
||||
@ -14,9 +14,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "JenisLinen_M")
|
||||
public class JenisLinen extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 3802178325012878624L;
|
||||
|
||||
@NotNull(message = "Kode Jenis Linen tidak boleh kosong")
|
||||
@Column(name = "KdJenisLinen", nullable = false)
|
||||
@Caption(value = "Kode Jenis Linen")
|
||||
|
||||
@ -14,9 +14,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "JenisPengadaan_M")
|
||||
public class JenisPengadaan extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 2076731882430464507L;
|
||||
|
||||
@Column(name = "KodeJenisPengadaan", nullable = true)
|
||||
@NotNull(message = "Kode Jenis Pengadaan tidak boleh kosong")
|
||||
@Caption(value = "Kode Jenis Pengadaan")
|
||||
|
||||
@ -14,9 +14,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "Kegiatan_M")
|
||||
public class Kegiatan extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = -8924639345065780422L;
|
||||
|
||||
@Column(name = "NamaKegiatan", nullable = true)
|
||||
@NotNull(message = "Nama Kegiatan tidak boleh kosong")
|
||||
@Caption(value = "Nama Kegiatan")
|
||||
|
||||
@ -19,8 +19,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Entity
|
||||
@Table(name = "sdm_kelompokjabatanbios_m")
|
||||
public class KelompokJabatanBIOS implements Serializable {
|
||||
private static final long serialVersionUID = 4062359021697600745L;
|
||||
|
||||
@Id
|
||||
@SequenceGenerator(name = "sdm_kelompokjabatanbios_m_gen", sequenceName = "public.sdm_kelompokjabatanbios_m_seq", allocationSize = 1)
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "sdm_kelompokjabatanbios_m_gen")
|
||||
@ -54,8 +52,4 @@ public class KelompokJabatanBIOS implements Serializable {
|
||||
public void setNamaKelompok(String namaKelompok) {
|
||||
this.namaKelompok = namaKelompok;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return serialVersionUID;
|
||||
}
|
||||
}
|
||||
|
||||
@ -28,11 +28,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Table(name = "keluargapegawai_m")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class KeluargaPegawai extends BaseMaster {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
//private static final long serialVersionUID = 4409764203082736662L;
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.keluargapegawai_m_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.keluargapegawai_m_id_seq", sequenceName = "public.keluargapegawai_m_id_seq", allocationSize = 1)
|
||||
|
||||
@ -19,8 +19,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Entity // @Audited
|
||||
@Table(name = "sdm_komponengaji_m")
|
||||
public class KomponenGaji implements Serializable {
|
||||
private static final long serialVersionUID = 6806029360742642141L;
|
||||
|
||||
@Id
|
||||
@SequenceGenerator(name = "sdm_komponengaji_m_gen", sequenceName = "public.sdm_komponengaji_m_id_seq", allocationSize = 1)
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "sdm_komponengaji_m_gen")
|
||||
@ -71,8 +69,4 @@ public class KomponenGaji implements Serializable {
|
||||
public void setJenisKomponen(Integer jenisKomponen) {
|
||||
this.jenisKomponen = jenisKomponen;
|
||||
}
|
||||
|
||||
public static long getSerialversionuid() {
|
||||
return serialVersionUID;
|
||||
}
|
||||
}
|
||||
|
||||
@ -18,11 +18,9 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Entity // @Audited
|
||||
@Entity
|
||||
@Table(name = "KomponenHarga_M")
|
||||
public class KomponenHarga extends BaseMaster {
|
||||
private static final long serialVersionUID = 2283865782290922330L;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectDepartemenFk")
|
||||
|
||||
|
||||
@ -12,9 +12,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "KondisiKendaraan_M")
|
||||
public class KondisiKendaraan extends BaseMaster {
|
||||
|
||||
private static final long serialVersionUID = 2401596216381226252L;
|
||||
|
||||
@Column(name = "Name", nullable = false, length = 15)
|
||||
@Caption(value = "Name")
|
||||
private String name;
|
||||
|
||||
@ -17,13 +17,10 @@ import javax.persistence.Id;
|
||||
*
|
||||
* @author Generator
|
||||
*/
|
||||
@Entity // @Audited
|
||||
@Entity
|
||||
@Table(name = "KondisiProduk_M")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class KondisiProduk extends BaseMaster {
|
||||
|
||||
//private static final long serialVersionUID = 9033522249794137983L;
|
||||
|
||||
@NotNull(message = "Kd Kondisi Produk tidak boleh kosong")
|
||||
@Column(name = "KdKondisiProduk", nullable = false)
|
||||
@Caption(value = "Kode Kondisi Produk")
|
||||
|
||||
@ -16,8 +16,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "MappingMesinToProduk_M")
|
||||
public class Mesin extends BaseMaster {
|
||||
|
||||
// private static final long serialVersionUID = 8921967062006223194L;
|
||||
public Mesin(Produk mesin, Integer kapasitas, Integer id) {
|
||||
super();
|
||||
this.mesin = mesin;
|
||||
|
||||
@ -5,22 +5,18 @@ import java.util.Set;
|
||||
|
||||
import javax.persistence.CascadeType;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.FetchType;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import org.hibernate.annotations.NotFound;
|
||||
import org.hibernate.annotations.NotFoundAction;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@ -28,11 +24,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
*
|
||||
* @author Syamsu
|
||||
*/
|
||||
|
||||
//@Entity
|
||||
//@Table(name = "ModulAplikasi_S_Sample")
|
||||
//@JsonSerialize
|
||||
//@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class ModulAplikasiS extends BaseMaster {
|
||||
|
||||
private static final long serialVersionUID = 8990329094182697203L;
|
||||
|
||||
@ -33,9 +33,6 @@ import com.jasamedika.medifirst2000.util.AgeCalculator;
|
||||
@EntityListeners(value = { MyEventListener.class })
|
||||
@Table(name = "Pasien_M")
|
||||
public class Pasien extends BaseMaster {
|
||||
|
||||
private static final long serialVersionUID = -7771356073340836706L;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.pasien_m_id_seq")
|
||||
@SequenceGenerator(name = "public.pasien_m_id_seq", sequenceName = "public.pasien_m_id_seq", allocationSize = 1)
|
||||
|
||||
@ -22,9 +22,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Table(name = "Pegawai_M")
|
||||
@JsonIgnoreProperties({ "hibernateLazyInitializer", "handler" })
|
||||
public class Pegawai extends BaseMasterPegawai {
|
||||
|
||||
private static final long serialVersionUID = -4927545337233579237L;
|
||||
|
||||
public Pegawai(String namaLengkap, String namaPanggilan, String nikIntern, String nipPns, String noIdentitas,
|
||||
String npwp, Integer id) {
|
||||
super();
|
||||
|
||||
@ -7,12 +7,10 @@ import javax.persistence.ManyToOne;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;import org.hibernate.envers.Audited;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
//@JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
|
||||
@Entity //@Audited
|
||||
@Entity
|
||||
@Table(name = "Pelaksana_T")
|
||||
public class Pelaksana extends BaseTransaction {
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@ import javax.persistence.Table;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Entity // @Audited
|
||||
@Entity
|
||||
@Table(name = "PemakaianKendaraanDinas_T")
|
||||
public class PemakaianKendaraanDinas extends BaseTransaction {
|
||||
|
||||
|
||||
@ -2,22 +2,18 @@ package com.jasamedika.medifirst2000.entities;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
import org.hibernate.envers.Audited;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
|
||||
@Entity // @Audited
|
||||
@Table(name = "RM_PhotoRadiologi_M")
|
||||
public class PhotoRadiologi extends BaseMaster {
|
||||
|
||||
private static final long serialVersionUID = -5861108981364926199L;
|
||||
|
||||
@NotNull(message = "Name tidak boleh kosong")
|
||||
@Column(name = "Name", nullable = false, length = 100)
|
||||
@Caption(value = "Name")
|
||||
|
||||
@ -15,9 +15,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Entity
|
||||
@Table(name = "produkfarmakologi_m")
|
||||
public class ProdukFarmakologi extends BaseActive {
|
||||
|
||||
private static final long serialVersionUID = -4184210423898563156L;
|
||||
|
||||
@NotNull(message = "Nama Produk tidak boleh kosong")
|
||||
@Column(name = "namaproduk", nullable = false)
|
||||
@Caption(value = "Nama Produk")
|
||||
|
||||
@ -3,20 +3,12 @@ package com.jasamedika.medifirst2000.entities;
|
||||
import java.util.Date;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Temporal;
|
||||
import javax.persistence.TemporalType;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseModel;
|
||||
|
||||
|
||||
|
||||
|
||||
/*@Entity //@Audited
|
||||
@Table(name = "Profile_M")*/
|
||||
public class ProfileM extends BaseModel {
|
||||
|
||||
/**
|
||||
|
||||
@ -13,9 +13,6 @@ import javax.persistence.Id;
|
||||
@Entity
|
||||
@Table(name = "ProsesCuci_M")
|
||||
public class ProsesCuci extends BaseMaster {
|
||||
|
||||
private static final long serialVersionUID = -2249080125161409770L;
|
||||
|
||||
@Caption(value = "Kode Proses Cuci")
|
||||
@Column(name = "KdProsesCuci", nullable = false)
|
||||
private String kdProsesCuci;
|
||||
|
||||
@ -8,7 +8,6 @@ import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import org.hibernate.envers.Audited;
|
||||
import org.hibernate.validator.constraints.Length;
|
||||
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
@ -17,15 +16,9 @@ import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
/**
|
||||
* RuanganM generated by hbm2java
|
||||
*/
|
||||
@Entity //@Audited
|
||||
@Entity
|
||||
@Table(name = "Ruangan_M_Sample")
|
||||
public class RuanganM extends BaseMaster {
|
||||
|
||||
/**
|
||||
* @author Andri
|
||||
*/
|
||||
private static final long serialVersionUID = -5831330603224345269L;
|
||||
|
||||
@Length(min = 1, max = 3, message = "")
|
||||
@NotNull(message="Kd Ruangan tidak boleh kosong")
|
||||
@Column(name = "kdRuangan", nullable = false)
|
||||
|
||||
@ -15,9 +15,6 @@ import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
@Entity
|
||||
@Table(name="StandarPelayananMakanan_M")
|
||||
public class StandarPelayananMakanan extends BaseMaster{
|
||||
|
||||
private static final long serialVersionUID = -779502818664518142L;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE,
|
||||
generator = "public.standarpelayananmakanan_m_id_seq")
|
||||
|
||||
@ -15,9 +15,6 @@ import com.jasamedika.medifirst2000.helper.Caption;
|
||||
@Entity
|
||||
@Table(name="SubUnitkerja_M")
|
||||
public class SubUnitKerjaPegawai extends BaseKeyValueMaster{
|
||||
|
||||
private static final long serialVersionUID = 6276984733159545428L;
|
||||
|
||||
public SubUnitKerjaPegawai()
|
||||
{}
|
||||
|
||||
|
||||
@ -15,9 +15,9 @@ import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonBackReference;
|
||||
import com.jasamedika.medifirst2000.base.BaseTransaction;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;import org.hibernate.envers.Audited;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Entity //@Audited
|
||||
@Entity
|
||||
@Table(name = "TimeOutControl_T")
|
||||
public class TimeOutControl extends BaseTransaction {
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user