Last active
February 23, 2021 13:56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CartDto { | |
private Integer id; | |
private @NotNull Integer userId; | |
private @NotNull Integer quantity; | |
private @NotNull Product product; | |
public CartDto() { | |
} | |
public CartDto(Cart cart) { | |
this.setId(cart.getId()); | |
this.setUserId(cart.getUserId()); | |
this.setQuantity(cart.getQuantity()); | |
this.setProduct(cart.getProduct()); | |
} | |
@Override | |
public String toString() { | |
return "CartDto{" + | |
"id=" + id + | |
", userId=" + userId + | |
", quantity=" + quantity + | |
", productName=" + product.getName() + | |
'}'; | |
} | |
public Integer getId() { | |
return id; | |
} | |
public void setId(Integer id) { | |
this.id = id; | |
} | |
public Integer getUserId() { | |
return userId; | |
} | |
public void setUserId(Integer userId) { | |
this.userId = userId; | |
} | |
public Integer getQuantity() { | |
return quantity; | |
} | |
public void setQuantity(Integer quantity) { | |
this.quantity = quantity; | |
} | |
public Product getProduct() { | |
return product; | |
} | |
public void setProduct(Product product) { | |
this.product = product; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment