1
0

NhAppUserAccount.hbm.xml 519 B

12345678910111213
  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="NhAppUserAccount" table="nh_app_user_account" lazy="false">
  5. <id name="id" column="id" type="long">
  6. <generator class="native" />
  7. </id>
  8. <property name="acctno" column="acctno" type="string" not-null="false" length="50" />
  9. </class>
  10. </hibernate-mapping>