58 lines
1.0 KiB
Java
58 lines
1.0 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.OneToMany;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.entities.Rekanan;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
/**
|
|
* class Penerimaaan Barang VO
|
|
*
|
|
* @author Generator
|
|
*/
|
|
public class DetilPenerimaanVO {
|
|
|
|
@Caption(value="no Sppb")
|
|
private String noBatch;
|
|
|
|
@Caption(value="Tanggal Terima")
|
|
private Date tanggalKadaluarsa;
|
|
|
|
@Caption(value="no Faktur")
|
|
private Double qty;
|
|
|
|
public String getNoBatch() {
|
|
return noBatch;
|
|
}
|
|
|
|
public void setNoBatch(String noBatch) {
|
|
this.noBatch = noBatch;
|
|
}
|
|
|
|
public Date getTanggalKadaluarsa() {
|
|
return tanggalKadaluarsa;
|
|
}
|
|
|
|
public void setTanggalKadaluarsa(Date tanggalKadaluarsa) {
|
|
this.tanggalKadaluarsa = tanggalKadaluarsa;
|
|
}
|
|
|
|
public Double getQty() {
|
|
return qty;
|
|
}
|
|
|
|
public void setQty(Double qty) {
|
|
this.qty = qty;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|