| 1234567891011121314151617181920212223242526272829303132 |
- <?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.rekon">
-
- <class name="ReconProcess" table="reconprocess" lazy="false" >
-
- <!--id name="reconProcessPk" column="reconprocess_pk" type="long">
- <generator class="native" />
- </id-->
-
- <id name="reconProcessPk" column="reconprocess_pk" type="string" length="255" />
- <property name="channelFk" column="channel_fk" type="string" not-null="false"/>
- <property name="reconProcess" column="reconprocess" type="string" not-null="false" length="255"/>
- <property name="startRecon" column="startrecon" type="string" not-null="false" length="10"/>
- <property name="fileView" column="fileview" type="string" not-null="false" length="255"/>
- <!--property name="formType" column="form_type" type="string" not-null="false" length="255"/-->
- <bag name="reconActions" cascade="all-delete-orphan">
- <key column="reconprocess_fk" />
- <one-to-many class="ReconAction"/>
- </bag>
-
- <bag name="reconSchedules" cascade="all-delete-orphan">
- <key column="reconprocess_fk" />
- <one-to-many class="ReconSchedule"/>
- </bag>
-
- </class>
- </hibernate-mapping>
|