-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaixa.java
107 lines (76 loc) · 2.09 KB
/
Caixa.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package Classes;
import java.util.Date;
public class Caixa {
private int codcaixa;
private Date dataabertura;
private Date datafechamento;
private double valorinicial;
private double valorfinal;
private double vendas;
private double deposito;
private double suprimento;
private double diferença;
private int aberto;
public Caixa() {
}
public int getCodcaixa() {
return codcaixa;
}
public void setCodcaixa(int codcaixa) {
this.codcaixa = codcaixa;
}
public Date getDataabertura() {
return dataabertura;
}
public void setDataabertura(Date dataabertura) {
this.dataabertura = dataabertura;
}
public Date getDatafechamento() {
return datafechamento;
}
public void setDatafechamento(Date datafechamento) {
this.datafechamento = datafechamento;
}
public double getValorinicial() {
return valorinicial;
}
public void setValorinicial(double valorinicial) {
this.valorinicial = valorinicial;
}
public double getValorfinal() {
return valorfinal;
}
public void setValorfinal(double valorfinal) {
this.valorfinal = valorfinal;
}
public double getVendas() {
return vendas;
}
public void setVendas(double vendas) {
this.vendas = vendas;
}
public double getDeposito() {
return deposito;
}
public void setDeposito(double deposito) {
this.deposito = deposito;
}
public double getDiferença() {
return diferença;
}
public void setDiferença(double diferença) {
this.diferença = diferença;
}
public int getAberto() {
return aberto;
}
public void setAberto(int aberto) {
this.aberto = aberto;
}
public double getSuprimentos() {
return suprimento;
}
public void setSuprimentos(double suprimentos) {
this.suprimento = suprimentos;
}
}