Serialized Form
-
Package com.proyecto.jpa.entity
-
Class com.proyecto.jpa.entity.Category
class Category extends Object implements Serializable- serialVersionUID:
- 1L
-
Class com.proyecto.jpa.entity.Customer
class Customer extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
address
String address
-
birthDate
LocalDate birthDate
-
email
@Email(message="Email inv\u00e1lido") String email
-
firstName
@NotBlank(message="El nombre no puede estar vac\u00edo") String firstName
-
id
Long id
-
lastName
@NotBlank(message="El apellido no puede estar vac\u00edo") String lastName
-
orders
List<Order> orders
-
phone
String phone
-
registrationDate
LocalDate registrationDate
-
status
Customer.CustomerStatus status
-
-
Class com.proyecto.jpa.entity.Order
class Order extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
customer
Customer customer
-
id
Long id
-
notes
String notes
-
orderDate
LocalDateTime orderDate
-
orderItems
List<OrderItem> orderItems
-
orderNumber
String orderNumber
-
shippingAddress
String shippingAddress
-
status
Order.OrderStatus status
-
totalAmount
BigDecimal totalAmount
-
-
Class com.proyecto.jpa.entity.OrderItem
class OrderItem extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
id
Long id
-
order
Order order
-
product
Product product
-
quantity
Integer quantity
-
subtotal
BigDecimal subtotal
-
unitPrice
BigDecimal unitPrice
-
-
Class com.proyecto.jpa.entity.Product
class Product extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
category
Category category
-
createdAt
LocalDateTime createdAt
-
description
String description
-
id
Long id
-
name
String name
-
price
BigDecimal price
-
stock
Integer stock
-
temporaryData
String temporaryData
-
updatedAt
LocalDateTime updatedAt
-
-