40 lines
753 B
Java
40 lines
753 B
Java
package com.jasamedika.medifirst2000.dto;
|
|
|
|
import java.util.List;
|
|
|
|
public class SuratPesananSementaraDto {
|
|
|
|
private List<KartuPengendaliDetail> detailProduk;
|
|
private KartuPengendaliHeader total;
|
|
private SupplierDto supplier;
|
|
|
|
public SuratPesananSementaraDto(){}
|
|
|
|
public List<KartuPengendaliDetail> getDetailProduk() {
|
|
return detailProduk;
|
|
}
|
|
|
|
|
|
public void setDetailProduk(List<KartuPengendaliDetail> detailProduk) {
|
|
this.detailProduk = detailProduk;
|
|
}
|
|
|
|
|
|
public KartuPengendaliHeader getTotal() {
|
|
return total;
|
|
}
|
|
|
|
public void setTotal(KartuPengendaliHeader total) {
|
|
this.total = total;
|
|
}
|
|
|
|
public SupplierDto getSupplier() {
|
|
return supplier;
|
|
}
|
|
|
|
public void setSupplier(SupplierDto supplier) {
|
|
this.supplier = supplier;
|
|
}
|
|
|
|
}
|