| 1234567891011121314151617 |
- <?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="NhBiller" table="nh_biller" lazy="false" >
- <id name="code" column="code" type="string" length="50" />
- <property name="name" column="name" type="string" length="225" not-null="true" />
- <many-to-one name="billerCategory" column="biller_category" class="NhBillerCategory" not-null="true" />
- <bag name="billerReports" table="nh_biller_report">
- <key column="biller_code" />
- <many-to-many column="report" class="NhReport" />
- </bag>
- </class>
- </hibernate-mapping>
|