Update Entities Class

Pemasangan generated serialVersionUID
This commit is contained in:
salmanoersabhk 2022-06-21 18:37:24 +07:00
parent 6c12d81b55
commit 88d053f342
5 changed files with 10 additions and 0 deletions

View File

@ -24,6 +24,8 @@ import com.jasamedika.medifirst2000.helper.Caption;
@Table(name = "pelayananfarmakologi_t") @Table(name = "pelayananfarmakologi_t")
public class PelayananFarmakologi extends BaseTransaction { public class PelayananFarmakologi extends BaseTransaction {
private static final long serialVersionUID = 778638186623894491L;
@ManyToOne(fetch = FetchType.LAZY) @ManyToOne(fetch = FetchType.LAZY)
@NotNull(message = "Produk Farmakologi tidak boleh kosong") @NotNull(message = "Produk Farmakologi tidak boleh kosong")
@JoinColumn(name = "objectprodukfarmakologifk") @JoinColumn(name = "objectprodukfarmakologifk")

View File

@ -16,6 +16,8 @@ import com.jasamedika.medifirst2000.helper.Caption;
@Table(name = "produkfarmakologi_m") @Table(name = "produkfarmakologi_m")
public class ProdukFarmakologi extends BaseActive { public class ProdukFarmakologi extends BaseActive {
private static final long serialVersionUID = -4184210423898563156L;
@NotNull(message = "Nama Produk tidak boleh kosong") @NotNull(message = "Nama Produk tidak boleh kosong")
@Column(name = "namaproduk", nullable = false) @Column(name = "namaproduk", nullable = false)
@Caption(value = "Nama Produk") @Caption(value = "Nama Produk")

View File

@ -23,6 +23,8 @@ import com.jasamedika.medifirst2000.helper.Caption;
@Table(name = "sdm_skoringtindakanfarmakologi_t") @Table(name = "sdm_skoringtindakanfarmakologi_t")
public class SkoringTindakanFarmakologi extends BaseTransaction { public class SkoringTindakanFarmakologi extends BaseTransaction {
private static final long serialVersionUID = 7912488462464538308L;
@Column(name = "skor", nullable = false) @Column(name = "skor", nullable = false)
@Caption(value = "Nilai Skor") @Caption(value = "Nilai Skor")
private Double skor; private Double skor;

View File

@ -12,6 +12,8 @@ import com.jasamedika.medifirst2000.helper.Caption;
*/ */
public class PelayananFarmakologiVO extends BaseTransactionVO { public class PelayananFarmakologiVO extends BaseTransactionVO {
private static final long serialVersionUID = -8606524804074896991L;
@Caption(value = "Produk Farmakologi") @Caption(value = "Produk Farmakologi")
private ProdukFarmakologiVO produk; private ProdukFarmakologiVO produk;

View File

@ -12,6 +12,8 @@ import com.jasamedika.medifirst2000.helper.Caption;
*/ */
public class SkoringTindakanFarmakologiVO extends BaseTransactionVO { public class SkoringTindakanFarmakologiVO extends BaseTransactionVO {
private static final long serialVersionUID = 2395905126104450639L;
@Caption(value = "Nilai Skor") @Caption(value = "Nilai Skor")
private Double skor; private Double skor;