FormatInfo.hbm.xml 832 B

1234567891011121314151617181920
  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.rekon">
  4. <class name="FormatInfo" table="formatinfo" lazy="false" >
  5. <id name="formatInfoPk" column="formatinfo_pk" type="long">
  6. <generator class="native" />
  7. </id>
  8. <property name="formatCode" column="formatcode" type="string" not-null="false" length="2"/>
  9. <property name="formatInfo" column="formatinfo" type="string" not-null="false" length="100"/>
  10. <property name="formatDesc" column="formatdesc" type="string" not-null="false" length="100"/>
  11. <property name="formatSample" column="formatsample" type="string" not-null="false" length="100"/>
  12. </class>
  13. </hibernate-mapping>