50 lines
1.3 KiB
Java
50 lines
1.3 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
import javax.persistence.*;
|
|
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonBackReference;
|
|
import javax.validation.constraints.NotNull;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class DetailOrderTindakanLabVOVO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class DetailOrderTindakanLabVO extends MedicalRecordTransactionVO{
|
|
@ManyToOne
|
|
@JoinColumn(name = "ProdukVOFk")
|
|
@NotNull(message = "ProdukVO Harus Diisi")
|
|
@Caption(value = "ProdukVO")
|
|
private ProdukVO produkVO;
|
|
public ProdukVO getProdukVO() {
|
|
return produkVO;
|
|
}
|
|
public void setProdukVO(ProdukVO produkVO) {
|
|
this.produkVO = produkVO;
|
|
}
|
|
@Column(name = "ProdukVOFk", insertable=false,updatable=false)
|
|
private String produkVOId;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "OrderProdukVOFk")
|
|
@NotNull(message = "OrderProdukVO Harus Diisi")
|
|
@Caption(value = "OrderProdukVO")
|
|
private OrderProdukVO orderTindakanLab;
|
|
public OrderProdukVO getOrderProdukVO() {
|
|
return orderTindakanLab;
|
|
}
|
|
public void setOrderProdukVO(OrderProdukVO orderTindakanLab) {
|
|
this.orderTindakanLab = orderTindakanLab;
|
|
}
|
|
@Column(name = "OrderProdukVOFk", insertable=false,updatable=false)
|
|
private String orderTindakanLabId;
|
|
|
|
|
|
} |