| 1234567891011121314151617181920212223242526272829303132 |
- <?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="NhBillerConfig" table="nh_biller_config" lazy="false" >
- <id name="id" column="id" type="string" length="25" />
- <property name="datasourceProvider" column="datasource_provider" type="string" length="255" not-null="false" />
- <property name="databaseHost" column="database_host" type="string" length="255" not-null="false" />
- <property name="databaseName" column="database_name" type="string" length="255" not-null="false" />
- <property name="databasePassword" column="database_password" type="string" length="255" not-null="false" />
- <property name="databasePort" column="database_port" type="string" length="255" not-null="false" />
- <property name="databaseUser" column="database_user" type="string" length="255" not-null="false" />
- <property name="dbms" column="dbms" type="string" length="255" not-null="false" />
- <property name="defaultSchema" column="default_schema" type="string" length="255" not-null="false" />
- <property name="name" column="name" type="string" length="255" not-null="false" />
- <property name="AS400FILE" column="AS400FILE" type="string" length="255" not-null="true" />
- <property name="synchronizeType" column="synchronize_type" type="integer" not-null="true" />
- <property name="billerType" column="biller_type" type="string" length="20" not-null="true" />
- <property name="status" column="status" type="string" length="10" not-null="false" />
- <property name="maxTagihan" column="max_tagihan" type="integer" 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" />
- <property name="lastSynch" column="last_synch" type="java.util.Calendar" not-null="false" />
- <property name="lastStatus" column="last_status" type="string" length="10" not-null="false" />
- <property name="lastSynPem" column="last_synch_pembayaran" type="java.util.Calendar" not-null="false" />
- <property name="lastSynTag" column="last_synch_tagihan" type="java.util.Calendar" not-null="false" />
- <property name="threadStatPem" column="thread_status_pembayaran" type="string" length="16" not-null="false" />
- <property name="threadStatTag" column="thread_status_tagihan" type="string" length="16" not-null="false" />
- </class>
- </hibernate-mapping>
|