首页>代码>Spring Boot整合Flyway框架实现自动新建mysql数据库表,并且插入、删除数据>/springboot-flyway/src/main/java/com/hellokoding/springboot/jpa/book/Book.java
01 | package com.hellokoding.springboot.jpa.book; |
02 |
03 | import lombok.Data; |
04 |
05 | import javax.persistence.Entity; |
06 | import javax.persistence.GeneratedValue; |
07 | import javax.persistence.GenerationType; |
08 | import javax.persistence.Id; |
09 |
10 | @Entity |
11 | @Data |
12 | public class Book { |
13 | @Id |
14 | @GeneratedValue (strategy = GenerationType.IDENTITY) |
15 | private int id; |
16 |
17 | private String title; |
18 |
19 | private String description; |
20 | } |