Update entity

Perubahan data type persen untuk nilai desimal
This commit is contained in:
Salman Manoe 2023-09-13 18:47:00 +07:00
parent 44b3978e3b
commit 5b926e6b81
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public class Sayatan extends BaseMaster implements Serializable {
@Column(name = "jumlah_persen")
@Caption(value = "Jumlah Persen")
private Integer persen;
private Double persen;
@ManyToOne(fetch = LAZY)
@JoinColumn(name = "objectpegawaifk")

View File

@ -23,7 +23,7 @@ public class SayatanVO extends BaseMasterVO {
private Integer urutan;
@Caption(value = "Jumlah Persen")
private Integer persen;
private Double persen;
@Caption(value = "Pegawai")
private PegawaiVO pegawai;