Information

0
Story Points

Technologies

Hibernate Mapping
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 21.06.2010 14:02:04 by Hibernate Tools 3.2.4.GA -->
<hibernate-mapping>
    <class name="ee.adit.dao.pojo.DownloadRequestLog" table="DOWNLOAD_REQUEST_LOG" >
        <id name="id" type="long">
            <column name="ID" precision="18" scale="0" />
            <generator class="sequence">
            	<param name="sequence">DOWNLOAD_REQUEST_LOG_ID_SEQ</param>
            </generator>
        </id>
        <property name="documentId" type="java.lang.Long">
            <column name="DOCUMENT_ID" precision="12" scale="0" />
        </property>
        <property name="documentFileId" type="java.lang.Long">
            <column name="DOCUMENT_FILE_ID" precision="12" scale="0" />
        </property>
        <property name="requestDate" type="timestamp">
            <column name="REQUEST_DATE" length="7" />
        </property>
        <property name="remoteApplicationShortName" type="string">
            <column name="REMOTE_APPLICATION_SHORT_NAME" length="50" />
        </property>
        <property name="userCode" type="string">
            <column name="USER_CODE" length="50" />
        </property>
        <property name="organizationCode" type="string">
            <column name="ORGANIZATION_CODE" length="50" />
        </property>
    </class>
</hibernate-mapping>
Page generated: Oct 19, 2017 2:35:18 PM