首页>代码>Spring Boot整合VueJS+spring data jpa实现待办事项TODO项目实例>/springboot-todomvc-mysql-vuejs/src/main/java/com/hellokoding/springboot/fullstack/todo/Todo.java
package com.hellokoding.springboot.fullstack.todo; import lombok.Data; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import java.util.Date; @Entity @Data public class Todo { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @NotNull @Size(min = 2, max = 100) private String title; private boolean completed; private Date updatedDate = new Date(); }
最近下载更多
nuxgod LV1
4月10日
asidun LV1
2022年12月29日
ajsfkl LV3
2022年8月19日
taoyi123 LV17
2021年3月25日
浙江螃蟹 LV7
2020年12月2日
zhangvsxun LV2
2020年12月1日
sunyongf LV3
2020年11月18日
ningmeng2020 LV2
2020年11月10日
sinbero LV8
2020年11月10日