| 1234567891011121314151617181920212223242526272829 |
- <?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="RoutingTable" table="routing_table" lazy="false" >
-
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
-
- <property name="codeStart" column="code_start" type="string" not-null="true" length="256" />
- <property name="codeEnd" column="code_end" type="string" not-null="true" length="256" />
- <property name="channel" column="channel" type="string" not-null="true" length="256" />
- <property name="startDate" column="start_date" type="java.util.Calendar" not-null="true"/>
- <property name="endDate" column="end_date" type="java.util.Calendar" not-null="false"/>
- <property name="queue" column="queue" type="string" not-null="true" length="256" />
- <property name="status" column="status" type="string" not-null="false" length="20" />
- <property name="subcodex" column="subcodex" type="string" not-null="false" length="256" />
- <!-- many-to-one name="subcodex" column="subcodex" class="Codex" not-null="false"/ -->
- <property name="createBy" column="create_by" type="string" not-null="false" length="256" />
- <property name="createDate" column="create_date" type="java.util.Calendar" not-null="false"/>
- <property name="modifiedBy" column="modified_by" type="string" not-null="false" length="256" />
- <property name="modifiedDate" column="modified_date" type="java.util.Calendar" not-null="false"/>
-
- </class>
-
- </hibernate-mapping>
|