| 12345678910111213141516171819202122 |
- <?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="ErrorMapping" table="error_mapping" lazy="false" >
-
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
-
- <property name="source" column="source" type="string" length="50" not-null="false"/>
- <property name="srcErrCode" column="src_error_code" type="string" length="5" not-null="false"/>
- <property name="destination" column="destination" type="string" length="50" not-null="false"/>
- <property name="desErrCode" column="des_error_code" type="string" length="5" not-null="false" />
- <property name="description" column="description" type="string" length="255" not-null="false" />
- <property name="modifiedBy" column="modified_by" type="string" length="64" not-null="true"/>
- <property name="modifiedDate" column="modified_date" type="timestamp" not-null="true"/>
-
- </class>
-
- </hibernate-mapping>
|