82 lines
2.0 KiB
Java
82 lines
2.0 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.io.Serializable;
|
|
import javax.persistence.*;
|
|
import java.util.Date;
|
|
import org.hibernate.validator.constraints.NotEmpty;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import javax.validation.constraints.NotNull;
|
|
import org.hibernate.validator.constraints.Length;
|
|
import org.hibernate.validator.internal.util.logging.Messages;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonManagedReference;
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class KomponenHargaR
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "KomponenHargaR_M")
|
|
public class KomponenHargaRVO extends BaseMasterVO {
|
|
/*@ManyToOne
|
|
@JoinColumn(name = "ObjectKomponenHargaRFk")
|
|
@NotNull(message="Object Komponen Harga R Harus Diisi")
|
|
@Caption(value="Object Komponen Harga R")
|
|
private KomponenHargaVO komponenHargaR;
|
|
|
|
public void setKomponenHargaR(KomponenHargaVO komponenHargaR) {
|
|
this.komponenHargaR = komponenHargaR;
|
|
}
|
|
|
|
@Column(name = "KdKomponenHargaR", nullable = false )
|
|
public KomponenHargaVO getKomponenHargaR(){
|
|
return this.komponenHargaR;
|
|
}
|
|
|
|
@Column(name = "ObjectKomponenHargaRFk", insertable=false,updatable=false)
|
|
private Integer komponenHargaRId;
|
|
*/
|
|
@Caption(value="Komponen Harga R")
|
|
private String namaKomponenHargaR;
|
|
|
|
|
|
public String getNamaKomponenHargaR() {
|
|
return namaKomponenHargaR;
|
|
}
|
|
|
|
public void setNamaKomponenHargaR(String namaKomponenHargaR) {
|
|
this.namaKomponenHargaR = namaKomponenHargaR;
|
|
}
|
|
|
|
@Caption(value="No Urut")
|
|
private Byte noUrut;
|
|
|
|
public void setNoUrut(Byte noUrut) {
|
|
this.noUrut = noUrut;
|
|
}
|
|
|
|
@Column(name = "NoUrut", nullable = false )
|
|
public Byte getNoUrut(){
|
|
return this.noUrut;
|
|
}
|
|
|
|
@Caption(value="QKomponen Harga R")
|
|
private Byte qKomponenHargaR;
|
|
|
|
public void setqKomponenHargaR(Byte qKomponenHargaR) {
|
|
this.qKomponenHargaR = qKomponenHargaR;
|
|
}
|
|
|
|
@Column(name = "QKomponenHargaR", nullable = false )
|
|
public Byte getqKomponenHargaR(){
|
|
return this.qKomponenHargaR;
|
|
}
|
|
|
|
|
|
}
|
|
|