/*
* Copyright (C) 2015 Allsoft
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package br.com.allsoft.avros.modelo;
import java.sql.Date;
/**
* Classe DAO para os orçamentos criados
*
* @author Luana Nascimento
*/
public class Orcamento {
private int id;
private int idCliente;
private int sessoes;
private double valor;
private String tipoPagamento;
private String descricao;
private Date criacao;
public String getDescricao() {
return descricao;
}
public void setDescricao(String descricao) {
this.descricao = descricao;
}
public int getSessoes() {
return sessoes;
}
public void setSessoes(int sessoes) {
this.sessoes = sessoes;
}
public int getIdCliente() {
return idCliente;
}
public void setIdCliente(int idCliente) {
this.idCliente = idCliente;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public double getValor() {
return valor;
}
public void setValor(double valor) {
this.valor = valor;
}
public String getTipoPagamento() {
return tipoPagamento;
}
public void setTipoPagamento(String tipoPagamento) {
this.tipoPagamento = tipoPagamento;
}
public Date getCriacao() {
return criacao;
}
public void setCriacao(Date criacao) {
this.criacao = criacao;
}
}