34 lines
677 B
Java
34 lines
677 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class KirimPerbaikanVO extends BaseTransactionVO {
|
|
|
|
|
|
private String noRecOrderPelayanan;
|
|
|
|
private String noRecKirimProduk;
|
|
|
|
public String getNoRecOrderPelayanan() {
|
|
return noRecOrderPelayanan;
|
|
}
|
|
|
|
public void setNoRecOrderPelayanan(String noRecOrderPelayanan) {
|
|
this.noRecOrderPelayanan = noRecOrderPelayanan;
|
|
}
|
|
|
|
public String getNoRecKirimProduk() {
|
|
return noRecKirimProduk;
|
|
}
|
|
|
|
public void setNoRecKirimProduk(String noRecKirimProduk) {
|
|
this.noRecKirimProduk = noRecKirimProduk;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|