-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComplement.java
More file actions
45 lines (35 loc) · 1.14 KB
/
Complement.java
File metadata and controls
45 lines (35 loc) · 1.14 KB
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
package com.fiscalapi.models.invoicing;
import com.fiscalapi.models.invoicing.billOfLading.CartaPorte;
import com.fiscalapi.models.invoicing.localTaxes.LocalTaxes;
import com.fiscalapi.models.invoicing.paymentComplement.InvoicePayment;
import com.fiscalapi.models.invoicing.payroll.Payroll;
public class Complement {
private Payroll payroll;
private InvoicePayment payment;
private LocalTaxes localTaxes;
private CartaPorte cartaPorte;
public Payroll getPayroll() {
return payroll;
}
public void setPayroll(Payroll payroll) {
this.payroll = payroll;
}
public InvoicePayment getPayment() {
return payment;
}
public void setPayment(InvoicePayment payment) {
this.payment = payment;
}
public LocalTaxes getLocalTaxes() {
return localTaxes;
}
public void setLocalTaxes(LocalTaxes localTaxes) {
this.localTaxes = localTaxes;
}
public CartaPorte getCartaPorte() {
return cartaPorte;
}
public void setCartaPorte(CartaPorte cartaPorte) {
this.cartaPorte = cartaPorte;
}
}