20 lines
715 B
XML
20 lines
715 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="WrongCaseBean" table="wrongcases">
|
|
<id name="id" type="int">
|
|
<column name="id"/>
|
|
<generator class="identity"/>
|
|
</id>
|
|
<property name="solutionId" type="int" update="false">
|
|
<column name="solutionId"/>
|
|
</property>
|
|
<property name="caseId" type="int" update="false">
|
|
<column name="caseId"/>
|
|
</property>
|
|
<property name="output" type="string">
|
|
<column name="output"/>
|
|
</property>
|
|
</class>
|
|
</hibernate-mapping>
|