Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public String toString() {
- return "Product:" +
- "id:" + id +
- ", name:'" + name + '\'' +
- ", defaultPrice:" + defaultPrice +
- ", productCategory:" + productCategory +
- ", supplier:" + supplier +
- ", productList:" + productList;
- }
- /**
- * id : Integer
- * name : String
- * defaultPrice: Float
- * productCategory : ProductCategory
- * supplier : Supplier
- * productList : ProductList
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement