hibernate 求助
我的数据库中有多个表有对应关系,结构如下
--学生信息表
create table student
(
stuId int identity(1,1) primary key,
stuName varchar(20) not null,
subjectId int not null, --引用的Subject表的subjectId
particularId int not null, --引用详细信息表中的主键
stuAge int
)
--科目表
create table Subject
(
subId int identity(1,1) primary key,
subName varchar(20) not null
)
--详细信息表
create table ParticularInfo
(
particularId int identity(1,1) primary key,
phone varchar(20),
address varchar(30)
)
我在保存的学生信息的时候怎么写?