Skip to content

Instantly share code, notes, and snippets.

@pshishkanov
Created December 21, 2015 14:53
Show Gist options
  • Select an option

  • Save pshishkanov/b7b8cee232785458869d to your computer and use it in GitHub Desktop.

Select an option

Save pshishkanov/b7b8cee232785458869d to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<!-- Generated 11.06.2009 17:47:28 by Hibernate Tools 3.2.2.GA -->
<hibernate-mapping>
<class name="ru.cinimex.nrd.hibernate.Holiday" table="holiday">
<comment>Праздничные дни</comment>
<id name="id" type="integer" column="holiday_id" >
<generator class="identity" />
</id>
<property name="startDate" type="timestamp" column="start_date"/>
<property name="endDate" type="timestamp" column="end_date"/>
<property name="type" type="string" column="type"/>
<property name="name" type="string" column="name"/>
</class>
</hibernate-mapping>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment