65 lines
1.3 KiB
Java
65 lines
1.3 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import java.util.Date;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.ManyToOne;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class JadwalPromosiVO extends BaseTransactionVO{
|
|
|
|
@Column(name = "Tanggal", nullable = true)
|
|
@Caption(value="Tanggal")
|
|
private Date tanggal;
|
|
|
|
@Column(name = "Jam", nullable = true)
|
|
@Caption(value="Jam")
|
|
private Date jam;
|
|
|
|
@Column(name = "Jumlah", nullable = true)
|
|
@Caption(value="Jumlah")
|
|
private Integer jumlah;
|
|
|
|
@ManyToOne
|
|
@JoinColumn(name = "ObjectManajemenPromosiFk")
|
|
@Caption("Manajemen Promosi")
|
|
private ManajemenPromosiVO manajemenPromosi;
|
|
|
|
public Date getTanggal() {
|
|
return tanggal;
|
|
}
|
|
|
|
public void setTanggal(Date tanggal) {
|
|
this.tanggal = tanggal;
|
|
}
|
|
|
|
public Date getJam() {
|
|
return jam;
|
|
}
|
|
|
|
public void setJam(Date jam) {
|
|
this.jam = jam;
|
|
}
|
|
|
|
public Integer getJumlah() {
|
|
return jumlah;
|
|
}
|
|
|
|
public void setJumlah(Integer jumlah) {
|
|
this.jumlah = jumlah;
|
|
}
|
|
|
|
public ManajemenPromosiVO getManajemenPromosi() {
|
|
return manajemenPromosi;
|
|
}
|
|
|
|
public void setManajemenPromosi(ManajemenPromosiVO manajemenPromosi) {
|
|
this.manajemenPromosi = manajemenPromosi;
|
|
}
|
|
|
|
|
|
}
|