Rev 538 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 538 | Rev 623 | ||
|---|---|---|---|
| Line 37... | Line 37... | ||
| 37 | 37 | ||
| 38 | private Long sequencial; |
38 | private Long sequencial; |
| 39 | private Usuario usuario; |
39 | private Usuario usuario; |
| 40 | private Produto produto; |
40 | private Produto produto; |
| 41 | private Loja loja; |
41 | private Loja loja; |
| 42 | // private Cliente cliente;
|
- | |
| - | 42 | private Cliente cliente; |
|
| 43 | private Integer quantidadeEstoqueAnterior; |
43 | private Integer quantidadeEstoqueAnterior; |
| 44 | private Integer quantidadeEstoqueNovo; |
44 | private Integer quantidadeEstoqueNovo; |
| 45 | private String observacao; |
45 | private String observacao; |
| 46 | private String auditoria; |
46 | private String auditoria; |
| 47 | private Date dataAtualizacao; |
47 | private Date dataAtualizacao; |
| Line 129... | Line 129... | ||
| 129 | }
|
129 | }
|
| 130 | public void setLoja(Loja loja) { |
130 | public void setLoja(Loja loja) { |
| 131 | this.loja = loja; |
131 | this.loja = loja; |
| 132 | }
|
132 | }
|
| 133 | 133 | ||
| 134 | /*
|
- | |
| 135 | @ManyToOne
|
134 | @ManyToOne |
| 136 | @ForeignKey(name="fk_estoqueaudit_cliente")
|
135 | @ForeignKey(name="fk_estoqueaudit_cliente") |
| 137 | @JoinColumn(name = "seq_cliente", nullable=true)
|
136 | @JoinColumn(name = "seq_cliente", nullable=true) |
| 138 | public Cliente getCliente() {
|
137 | public Cliente getCliente() { |
| 139 | return cliente;
|
138 | return cliente; |
| 140 | }
|
139 | }
|
| 141 | public void setCliente(Cliente cliente) {
|
140 | public void setCliente(Cliente cliente) { |
| 142 | this.cliente = cliente;
|
141 | this.cliente = cliente; |
| 143 | }
|
142 | }
|
| 144 | */
|
- | |
| 145 | 143 | ||
| 146 | @Column(name="qtd_estoque_anterior") |
144 | @Column(name="qtd_estoque_anterior") |
| 147 | public Integer getQuantidadeEstoqueAnterior() { |
145 | public Integer getQuantidadeEstoqueAnterior() { |
| 148 | return quantidadeEstoqueAnterior; |
146 | return quantidadeEstoqueAnterior; |
| 149 | }
|
147 | }
|