Spring Boot
JPA Entity Generator
Download .java
Copy
SQL CREATE TABLE
Load sample
CREATE TABLE order_items ( id BIGINT PRIMARY KEY AUTO_INCREMENT, order_id BIGINT NOT NULL, sku VARCHAR(80) NOT NULL, quantity INT NOT NULL, unit_price DECIMAL(10,2) NOT NULL, discount_pct DECIMAL(5,2) DEFAULT 0.00, notes TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );
Detected model
—
Column
Java type
Annotations