CalendarDate.hbm.xml 862 B

123456789101112131415161718192021222324
  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="CalendarDate" table="calendardate" lazy="false" >
  5. <id name="calendarDatePk" column="calendardate_pk" type="long">
  6. <generator class="native" />
  7. </id>
  8. <property name="calendarDate" column="calendardate" type="date" not-null="false" />
  9. <property name="modifiedBy" column="modified_by" type="string" not-null="true" length="64" />
  10. <property name="timestamp" column="timestamp" type="timestamp" not-null="true"/>
  11. <bag name="reconSchedules" cascade="all-delete-orphan">
  12. <key column="calendardate_fk"/>
  13. <one-to-many class="ReconSchedule"/>
  14. </bag>
  15. </class>
  16. </hibernate-mapping>