57 lines
1.5 KiB
Java
57 lines
1.5 KiB
Java
package com.jasamedika.medifirst2000.entities;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Table;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import com.jasamedika.medifirst2000.base.BaseMaster;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
|
|
@Entity
|
|
@Table(name = "JenisLinen_M")
|
|
public class JenisLinen extends BaseMaster {
|
|
@NotNull(message = "Kode Jenis Linen tidak boleh kosong")
|
|
@Column(name = "KdJenisLinen", nullable = false)
|
|
@Caption(value = "Kode Jenis Linen")
|
|
private String kdJenisLinen;
|
|
|
|
@NotNull(message = "Jenis Linen tidak boleh kosong")
|
|
@Column(name = "JenisLinen", nullable = false)
|
|
@Caption(value = "Jenis Linen")
|
|
private String jenisLinen;
|
|
|
|
public String getKdJenisLinen() {
|
|
return kdJenisLinen;
|
|
}
|
|
|
|
public void setKdJenisLinen(String kdJenisLinen) {
|
|
this.kdJenisLinen = kdJenisLinen;
|
|
}
|
|
|
|
public String getJenisLinen() {
|
|
return jenisLinen;
|
|
}
|
|
|
|
public void setJenisLinen(String jenisLinen) {
|
|
this.jenisLinen = jenisLinen;
|
|
}
|
|
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "public.jenislinen_m_id_seq")
|
|
@javax.persistence.SequenceGenerator(name = "public.jenislinen_m_id_seq", sequenceName = "public.jenislinen_m_id_seq", allocationSize = 1)
|
|
@Column(name = "id")
|
|
protected Integer id;
|
|
|
|
public Integer getId() {
|
|
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
} |