Skip to content

Commit bf6b158

Browse files
committed
QuoteCreateResponseQuoteDTO added
1 parent 5675705 commit bf6b158

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
package core.model.quote.response;
2+
3+
import java.util.List;
4+
5+
public class QuoteCreateResponseQuoteDTO {
6+
private double totalPrice;
7+
private String id;
8+
private List<QuoteCreateResponseLineDTO> lines;
9+
private String customer;
10+
private long revision;
11+
private long status;
12+
13+
public double getTotalPrice() {
14+
return totalPrice;
15+
}
16+
17+
public void setTotalPrice(double value) {
18+
this.totalPrice = value;
19+
}
20+
21+
public String getId() {
22+
return id;
23+
}
24+
25+
public void setId(String value) {
26+
this.id = value;
27+
}
28+
29+
public List<QuoteCreateResponseLineDTO> getLines() {
30+
return lines;
31+
}
32+
33+
public void setLines(List<QuoteCreateResponseLineDTO> value) {
34+
this.lines = value;
35+
}
36+
37+
public String getCustomer() {
38+
return customer;
39+
}
40+
41+
public void setCustomer(String value) {
42+
this.customer = value;
43+
}
44+
45+
public long getRevision() {
46+
return revision;
47+
}
48+
49+
public void setRevision(long value) {
50+
this.revision = value;
51+
}
52+
53+
public long getStatus() {
54+
return status;
55+
}
56+
57+
public void setStatus(long value) {
58+
this.status = value;
59+
}
60+
}

0 commit comments

Comments
 (0)