rapi-rapi

This commit is contained in:
salmanoe 2021-02-16 18:19:17 +07:00
parent b6a8b6910f
commit 5f66d6bcc0
2 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@ public class MapKompGajiToPendidikanJabatan extends BaseMaster {
@Caption(value = "Object KategoryPegawai") @Caption(value = "Object KategoryPegawai")
private KategoryPegawai kategoryPegawai; private KategoryPegawai kategoryPegawai;
@Column(name = "ObjectKategoryPegawaiFk", insertable = false, updatable = false, nullable = false) @Column(name = "ObjectKategoryPegawaiFk", insertable = false, updatable = false, nullable = true)
private Integer kategoryPegawaiId; private Integer kategoryPegawaiId;
@ManyToOne @ManyToOne

View File

@ -49,11 +49,11 @@ public class ObservasiTransaksi extends BaseTransaction{
private Integer pegawaiId; private Integer pegawaiId;
@Caption(value="tglInput ") @Caption(value="tglInput ")
@Column(name="tglInput ", nullable=false) @Column(name="tglInput ", nullable=true)
private Date tglInput ; private Date tglInput ;
@Caption(value="tglObservasi ") @Caption(value="tglObservasi ")
@Column(name="tglObservasi ", nullable=false) @Column(name="tglObservasi ", nullable=true)
private Date tglObservasi ; private Date tglObservasi ;
@Caption(value="valueI") @Caption(value="valueI")