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 7.02.2010 22:22:31 by Hibernate Tools 3.2.4.GA -->
<hibernate-mapping>
    <class name="dvk.api.ml.PojoSettings" table="DHL_SETTINGS">
        <id name="id" type="long">
            <column name="ID" precision="10" scale="0" />
            <generator class="assigned" />
        </id>
        <property name="institutionCode" type="string">
            <column name="INSTITUTION_CODE" length="20" not-null="true" />
        </property>
        <property name="institutionName" type="string">
            <column name="INSTITUTION_NAME" length="250" not-null="true" />
        </property>
        <property name="personalIdCode" type="string">
            <column name="PERSONAL_ID_CODE" length="20" not-null="true" />
        </property>
        <property name="unitId" type="long">
            <column name="UNIT_ID" precision="10" scale="0" not-null="true" unique="true" />
        </property>
        <property name="subdivisionCode" type="big_decimal">
            <column name="SUBDIVISION_CODE" precision="38" scale="0" />
        </property>
        <property name="occupationCode" type="big_decimal">
            <column name="OCCUPATION_CODE" precision="38" scale="0" />
        </property>
    </class>
</hibernate-mapping>
Page generated: Oct 19, 2017 2:34:20 PM