44 lines
1004 B
Java
44 lines
1004 B
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import javax.persistence.*;
|
|
|
|
import static javax.persistence.GenerationType.SEQUENCE;
|
|
|
|
/**
|
|
* class UnitKerja
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
@Entity
|
|
@Table(name = "UnitKerja_M")
|
|
public class UnitKerja extends BaseMaster {
|
|
|
|
@Caption(value = "Kode Pimpinan")
|
|
private String kdPimpinan;
|
|
|
|
@Caption(value = "Kode Unit Kerja")
|
|
private Byte kdUnitKerja;
|
|
|
|
@Caption(value = "No Unit Kerja")
|
|
private String noUnitKerja;
|
|
|
|
@Caption(value = "QUnit Kerja")
|
|
private Byte qUnitKerja;
|
|
|
|
@Caption(value = "Unit Kerja")
|
|
private String namaUnitKerja;
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = SEQUENCE, generator = "public.unitkerja_m_id_seq")
|
|
@SequenceGenerator(name = "public.unitkerja_m_id_seq", sequenceName = "public.unitkerja_m_id_seq", allocationSize = 1)
|
|
@Column(name = "id")
|
|
protected Integer id;
|
|
|
|
} |