首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

21.hibernate承袭映射table_per_class

2012-06-28 
21.hibernate继承映射table_per_classt_gen_table表结构:person表结构:teacher表结构:student表结构:packa

21.hibernate继承映射table_per_class
t_gen_table表结构:

person表结构:

teacher表结构:

student表结构:

package entity;import javax.persistence.Entity;@Entitypublic class Student extends Person {private int score;public int getScore() {return score;}public void setScore(int score) {this.score = score;}}

热点排行