Rev 259 | Rev 377 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 259 | Rev 296 | ||
|---|---|---|---|
| Line 32... | Line 32... | ||
| 32 | private static final long serialVersionUID = 1L; |
32 | private static final long serialVersionUID = 1L; |
| 33 | 33 | ||
| 34 | private Long sequencial; |
34 | private Long sequencial; |
| 35 | private Conta conta; |
35 | private Conta conta; |
| 36 | private ContaBancaria contaBancaria; |
36 | private ContaBancaria contaBancaria; |
| - | 37 | private FormaPagamento formaPagamento; |
|
| 37 | private Date dataEmissao; |
38 | private Date dataEmissao; |
| 38 | private Date dataVencimento; |
39 | private Date dataVencimento; |
| 39 | private Date dataPagamento; |
40 | private Date dataPagamento; |
| 40 | private Double valor; |
41 | private Double valor; |
| 41 | private String observacao; |
42 | private String observacao; |
| Line 95... | Line 96... | ||
| 95 | public ContaBancaria getContaBancaria() { |
96 | public ContaBancaria getContaBancaria() { |
| 96 | return contaBancaria; |
97 | return contaBancaria; |
| 97 | }
|
98 | }
|
| 98 | public void setContaBancaria(ContaBancaria contaBancaria) { |
99 | public void setContaBancaria(ContaBancaria contaBancaria) { |
| 99 | this.contaBancaria = contaBancaria; |
100 | this.contaBancaria = contaBancaria; |
| - | 101 | }
|
|
| - | 102 | ||
| - | 103 | @ManyToOne |
|
| - | 104 | @ForeignKey(name="fk_parcela_formapagamento") |
|
| - | 105 | @JoinColumn(name="cod_formapagament") |
|
| - | 106 | public FormaPagamento getFormaPagamento() { |
|
| - | 107 | return formaPagamento; |
|
| - | 108 | }
|
|
| - | 109 | public void setFormaPagamento(FormaPagamento formaPagamento) { |
|
| - | 110 | this.formaPagamento = formaPagamento; |
|
| 100 | }
|
111 | }
|
| 101 | 112 | ||
| 102 | @Column(name="dth_emissao", nullable=false) |
113 | @Column(name="dth_emissao", nullable=false) |
| 103 | public Date getDataEmissao() { |
114 | public Date getDataEmissao() { |
| 104 | return dataEmissao; |
115 | return dataEmissao; |