/src/main/java/br/com/tiagogarcia/domain/ResumeCart.java
https://bitbucket.org/tgarcialemos/prova · Java · 27 lines · 17 code · 10 blank · 0 comment · 0 complexity · b133f9845c5a5956b0910afd5a3ba5e0 MD5 · raw file
- package br.com.tiagogarcia.domain;
- public class ResumeCart {
- private Long id;
-
- private Double total;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Double getTotal() {
- return total;
- }
- public void setTotal(Double total) {
- this.total = total;
- }
-
-
-
- }