You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.4 KiB
79 lines
1.4 KiB
package api.menu.playa.vo;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
import api.menu.playa.enums.EstadoOrdenEnum;
|
|
import api.menu.playa.enums.MedioPagoEnum;
|
|
|
|
public class OrdenVO {
|
|
|
|
private Long num;
|
|
private Integer total;
|
|
private LocalDateTime fecha;
|
|
private EstadoOrdenEnum estado;
|
|
private MedioPagoEnum medio;
|
|
private Boolean entregado;
|
|
|
|
private List<DetalleVO> detalles;
|
|
|
|
public Long getNum() {
|
|
return num;
|
|
}
|
|
|
|
public void setNum(Long num) {
|
|
this.num = num;
|
|
}
|
|
|
|
public Integer getTotal() {
|
|
return total;
|
|
}
|
|
|
|
public void setTotal(Integer total) {
|
|
this.total = total;
|
|
}
|
|
|
|
public List<DetalleVO> getDetalles() {
|
|
return detalles;
|
|
}
|
|
|
|
public void setDetalles(List<DetalleVO> detalles) {
|
|
this.detalles = detalles;
|
|
}
|
|
|
|
public LocalDateTime getFecha() {
|
|
return fecha;
|
|
}
|
|
|
|
public void setFecha(LocalDateTime fecha) {
|
|
this.fecha = fecha;
|
|
}
|
|
|
|
public EstadoOrdenEnum getEstado() {
|
|
return estado;
|
|
}
|
|
|
|
public void setEstado(EstadoOrdenEnum estado) {
|
|
this.estado = estado;
|
|
}
|
|
|
|
public MedioPagoEnum getMedio() {
|
|
return medio;
|
|
}
|
|
|
|
public void setMedio(MedioPagoEnum medio) {
|
|
this.medio = medio;
|
|
}
|
|
|
|
public Boolean getEntregado() {
|
|
return entregado;
|
|
}
|
|
|
|
public void setEntregado(Boolean entregado) {
|
|
this.entregado = entregado;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|