摘要: 1 package javax.persistence; 2 3 public enum GenerationType { 4 TABLE, 5 SEQUENCE, 6 IDENTITY, 7 AUTO; 8 9 private GenerationType() { 10 } 11 } 从源码中可以 阅读全文
posted @ 2018-12-08 17:30 muyuer 阅读(20218) 评论(0) 推荐(0) 编辑