rapi-rapi
This commit is contained in:
parent
0d14880fc1
commit
0b1e8c29db
@ -12,43 +12,43 @@ import javax.persistence.Table;
|
||||
import com.jasamedika.medifirst2000.base.BaseMaster;
|
||||
import com.jasamedika.medifirst2000.helper.Caption;
|
||||
|
||||
@Entity //@Audited
|
||||
@Entity // @Audited
|
||||
@Table(name = "sdm_RincianKegiatan_M")
|
||||
public class RincianKegiatan extends BaseMaster {
|
||||
|
||||
@Column(name = "RincianKegiatan", nullable = true , length = 8000)
|
||||
@Caption(value="Rincian Kegiatan")
|
||||
private String rincianKegiatan;
|
||||
|
||||
@Column(name = "RincianKegiatan", nullable = true, length = 8000)
|
||||
@Caption(value = "Rincian Kegiatan")
|
||||
private String rincianKegiatan;
|
||||
|
||||
@Caption(value = "satuan")
|
||||
@Column(name = "satuan", nullable = true)
|
||||
private String satuan;
|
||||
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "ObjectSatuanIndikatorFk")
|
||||
@Caption(value = "Object Satuan Indikator")
|
||||
private SatuanIndikator satuanIndikator;
|
||||
|
||||
|
||||
@Column(name = "ObjectSatuanIndikatorFk", insertable = false, updatable = false, nullable = true)
|
||||
private Integer satuanIndikatorId;
|
||||
|
||||
|
||||
@Column(name = "statusVerifikasi", nullable = true)
|
||||
@Caption(value = "statusVerifikasi")
|
||||
private Integer statusVerifikasi;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.sdm_RincianKegiatan_M_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.sdm_RincianKegiatan_M_id_seq", sequenceName = "public.sdm_RincianKegiatan_M_id_seq", allocationSize = 1)
|
||||
@Column(name = "id")
|
||||
protected Integer id;
|
||||
|
||||
public String getRincianKegiatan() {
|
||||
return rincianKegiatan;
|
||||
}
|
||||
|
||||
public void setRincianKegiatan(String rincianKegiatan) {
|
||||
this.rincianKegiatan = rincianKegiatan;
|
||||
}
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.sdm_RincianKegiatan_M_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.sdm_RincianKegiatan_M_id_seq", sequenceName = "public.sdm_RincianKegiatan_M_id_seq", allocationSize = 1)
|
||||
@Column(name = "id")
|
||||
protected Integer id;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
|
||||
@ -56,6 +56,12 @@ public class UraianTugasM extends BaseMaster {
|
||||
// @Column(name = "LamaKegiatan", nullable = true)
|
||||
// private Integer lamaKegiatan;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.sdm_UraianTugas_M_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.sdm_UraianTugas_M_id_seq", sequenceName = "public.sdm_UraianTugas_M_id_seq", allocationSize = 1)
|
||||
@Column(name = "id")
|
||||
protected Integer id;
|
||||
|
||||
public String getPeriode() {
|
||||
return periode;
|
||||
}
|
||||
@ -128,12 +134,6 @@ public class UraianTugasM extends BaseMaster {
|
||||
this.pelaksanaanTugasId = pelaksanaanTugasId;
|
||||
}
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.sdm_UraianTugas_M_id_seq")
|
||||
@javax.persistence.SequenceGenerator(name = "public.sdm_UraianTugas_M_id_seq", sequenceName = "public.sdm_UraianTugas_M_id_seq", allocationSize = 1)
|
||||
@Column(name = "id")
|
||||
protected Integer id;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user