| 12345678910111213141516171819 |
- <?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="id.co.hanoman.service.config">
- <class name="Codex" table="codex" lazy="false" >
- <id name="id" column="id" type="string" length="256" />
-
- <!--property name="esc" column="esc" type="integer" not-null="false"/-->
- <!--property name="raw" column="raw" type="integer" not-null="false"/-->
- <property name="allowPartial" column="allow_partial" type="integer" not-null="false"/>
- <property name="xml" column="xml" type="string" length="32700" not-null="false"/>
- <property name="modifiedBy" column="modified_by" type="string" length="64" not-null="true" />
- <property name="timestamp" column="timestamp" type="java.util.Calendar" not-null="true" />
-
- </class>
-
- </hibernate-mapping>
|