AppSetting.hbm.xml 877 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping package="id.co.hanoman.service.ePayment">
  4. <class name="AppSetting" table="app_setting" lazy="false" >
  5. <id name="code" column="code" type="string" length="25" />
  6. <property name="name" column="name" type="string" length="50" not-null="true" />
  7. <property name="description" column="description" type="string" length="255" not-null="false" />
  8. <property name="settingValue" column="setting_value" type="string" length="100" not-null="false" />
  9. <property name="modifiedBy" column="modified_by" type="string" length="32" not-null="true" />
  10. <property name="modifiedDate" column="modified_date" type="java.util.Calendar" not-null="true" />
  11. </class>
  12. </hibernate-mapping>