Created
December 21, 2015 14:53
-
-
Save pshishkanov/b7b8cee232785458869d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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