31 lines
681 B
Java
31 lines
681 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class DistribusiAsetVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "No Order")
|
|
private String noOrder;
|
|
|
|
@Caption(value = "Tgl Order")
|
|
private Date tglKirim;
|
|
|
|
@Caption(value = "Object Ruangan")
|
|
private RuanganVO ruanganAsal;
|
|
|
|
@Caption(value = "Object Ruangan")
|
|
private RuanganVO ruanganTujuan;
|
|
|
|
private Set<DistribusiAsetDetailVO> distribusiAsetDetail = new HashSet<>();
|
|
|
|
}
|