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.base.BaseMaster;
|
||||||
import com.jasamedika.medifirst2000.helper.Caption;
|
import com.jasamedika.medifirst2000.helper.Caption;
|
||||||
|
|
||||||
@Entity //@Audited
|
@Entity // @Audited
|
||||||
@Table(name = "sdm_RincianKegiatan_M")
|
@Table(name = "sdm_RincianKegiatan_M")
|
||||||
public class RincianKegiatan extends BaseMaster {
|
public class RincianKegiatan extends BaseMaster {
|
||||||
|
|
||||||
@Column(name = "RincianKegiatan", nullable = true , length = 8000)
|
@Column(name = "RincianKegiatan", nullable = true, length = 8000)
|
||||||
@Caption(value="Rincian Kegiatan")
|
@Caption(value = "Rincian Kegiatan")
|
||||||
private String rincianKegiatan;
|
private String rincianKegiatan;
|
||||||
|
|
||||||
@Caption(value = "satuan")
|
@Caption(value = "satuan")
|
||||||
@Column(name = "satuan", nullable = true)
|
@Column(name = "satuan", nullable = true)
|
||||||
private String satuan;
|
private String satuan;
|
||||||
|
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
@JoinColumn(name = "ObjectSatuanIndikatorFk")
|
@JoinColumn(name = "ObjectSatuanIndikatorFk")
|
||||||
@Caption(value = "Object Satuan Indikator")
|
@Caption(value = "Object Satuan Indikator")
|
||||||
private SatuanIndikator satuanIndikator;
|
private SatuanIndikator satuanIndikator;
|
||||||
|
|
||||||
@Column(name = "ObjectSatuanIndikatorFk", insertable = false, updatable = false, nullable = true)
|
@Column(name = "ObjectSatuanIndikatorFk", insertable = false, updatable = false, nullable = true)
|
||||||
private Integer satuanIndikatorId;
|
private Integer satuanIndikatorId;
|
||||||
|
|
||||||
@Column(name = "statusVerifikasi", nullable = true)
|
@Column(name = "statusVerifikasi", nullable = true)
|
||||||
@Caption(value = "statusVerifikasi")
|
@Caption(value = "statusVerifikasi")
|
||||||
private Integer 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() {
|
public String getRincianKegiatan() {
|
||||||
return rincianKegiatan;
|
return rincianKegiatan;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRincianKegiatan(String rincianKegiatan) {
|
public void setRincianKegiatan(String rincianKegiatan) {
|
||||||
this.rincianKegiatan = 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() {
|
public Integer getId() {
|
||||||
return id;
|
return id;
|
||||||
|
|||||||
@ -56,6 +56,12 @@ public class UraianTugasM extends BaseMaster {
|
|||||||
// @Column(name = "LamaKegiatan", nullable = true)
|
// @Column(name = "LamaKegiatan", nullable = true)
|
||||||
// private Integer lamaKegiatan;
|
// 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() {
|
public String getPeriode() {
|
||||||
return periode;
|
return periode;
|
||||||
}
|
}
|
||||||
@ -128,12 +134,6 @@ public class UraianTugasM extends BaseMaster {
|
|||||||
this.pelaksanaanTugasId = pelaksanaanTugasId;
|
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() {
|
public Integer getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user