- <?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.ePayment">
- <class name="AppSetting" table="app_setting" lazy="false" >
- <id name="code" column="code" type="string" length="25" />
- <property name="name" column="name" type="string" length="50" not-null="true" />
- <property name="description" column="description" type="string" length="255" not-null="false" />
- <property name="settingValue" column="setting_value" type="string" length="100" not-null="false" />
- <property name="modifiedBy" column="modified_by" type="string" length="32" not-null="true" />
- <property name="modifiedDate" column="modified_date" type="java.util.Calendar" not-null="true" />
- </class>
- </hibernate-mapping>
|