blob: 3a4032ae3f312d158cd0fe9e6bc5c2cd655d2a1f (
plain) (
blame)
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
|
package org.uic.barcode.ticket.api.impl;
import org.uic.barcode.ticket.api.spec.IVatDetail;
public class SimpleVatDetail implements IVatDetail {
public int country;
public int percentage;
public Long amount;
public String vatId;
public int getCountry() {
return country;
}
public void setCountry(int country) {
this.country = country;
}
public int getPercentage() {
return percentage;
}
public void setPercentage(int percentage) {
this.percentage = percentage;
}
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
public String getVatId() {
return vatId;
}
public void setVatId(String vatId) {
this.vatId = vatId;
}
}
|