JUDGER_AND_CLIENT/Common/build/classes/persistence/oj_beans/ExamInfoBean.hbm.xml

21 lines
726 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="persistence.oj_beans">
<class name="ExamInfoBean" table="studentexaminfo">
<id name="id" type="int">
<column name="id"/>
<generator class="identity"/>
</id>
<property name="userId" type="int" update="false">
<column name="userId"/>
</property>
<property name="examId" type="int" update="false">
<column name="examId"/>
</property>
<property name="score" type="float" update="true">
<column name="score"/>
</property>
</class>
</hibernate-mapping>