NhBillerConfig.hbm.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132
  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="NhBillerConfig" table="nh_biller_config" lazy="false" >
  5. <id name="id" column="id" type="string" length="25" />
  6. <property name="datasourceProvider" column="datasource_provider" type="string" length="255" not-null="false" />
  7. <property name="databaseHost" column="database_host" type="string" length="255" not-null="false" />
  8. <property name="databaseName" column="database_name" type="string" length="255" not-null="false" />
  9. <property name="databasePassword" column="database_password" type="string" length="255" not-null="false" />
  10. <property name="databasePort" column="database_port" type="string" length="255" not-null="false" />
  11. <property name="databaseUser" column="database_user" type="string" length="255" not-null="false" />
  12. <property name="dbms" column="dbms" type="string" length="255" not-null="false" />
  13. <property name="defaultSchema" column="default_schema" type="string" length="255" not-null="false" />
  14. <property name="name" column="name" type="string" length="255" not-null="false" />
  15. <property name="AS400FILE" column="AS400FILE" type="string" length="255" not-null="true" />
  16. <property name="synchronizeType" column="synchronize_type" type="integer" not-null="true" />
  17. <property name="billerType" column="biller_type" type="string" length="20" not-null="true" />
  18. <property name="status" column="status" type="string" length="10" not-null="false" />
  19. <property name="maxTagihan" column="max_tagihan" type="integer" not-null="false" />
  20. <property name="modifiedBy" column="modified_by" type="string" length="32" not-null="true" />
  21. <property name="modifiedDate" column="modified_date" type="java.util.Calendar" not-null="true" />
  22. <property name="lastSynch" column="last_synch" type="java.util.Calendar" not-null="false" />
  23. <property name="lastStatus" column="last_status" type="string" length="10" not-null="false" />
  24. <property name="lastSynPem" column="last_synch_pembayaran" type="java.util.Calendar" not-null="false" />
  25. <property name="lastSynTag" column="last_synch_tagihan" type="java.util.Calendar" not-null="false" />
  26. <property name="threadStatPem" column="thread_status_pembayaran" type="string" length="16" not-null="false" />
  27. <property name="threadStatTag" column="thread_status_tagihan" type="string" length="16" not-null="false" />
  28. </class>
  29. </hibernate-mapping>